skhan-nacmgit

Results 9 comments of skhan-nacmgit

This is what I have: [EdiSegment, EdiPath("ADX")] public class ADX { } [EdiSegment, EdiPath("RMR")] public class RMR { } [EdiSegment, EdiPath("REF")] public class REF { } [EdiSegment, EdiPath("NTE")] public class...

This is what the details look like. If you notice, one of the IT1 differs. ![TP_REFERENCE](https://user-images.githubusercontent.com/57195982/70942690-35faf100-201d-11ea-8466-cddb4d12221e.jpg)

I considered that option, however, the segment identifier (second element) is not present. My main question though, looking at the loops in the TP docs, how would you have structured...

I followed your advice from another post (issue) and this got me closer. ```csharp [EdiMessage] public class RemittanceDocument { #region Header Trailer [EdiValue("X(3)", Path = "ST/0", Description = "ST01 -...

Sender and Receiver (Party Identification) is blank. ```csharp [EdiGroup] public class FunctionalGroup { [EdiValue("X(2)", Path = "GS/0", Description = "GS01 - Functional Identifier Code")] public string FunctionalIdentifierCode { get; set;...

Changing to this seems to work. ```csharp [EdiSegment, EdiPath("N1")] public class PartyIdentification { [EdiValue("X(3)", Path = "N1/0")] public string EntityIdentifierCode { get; set; } [EdiValue("X(60)", Path = "N1/1")] public string...

Can you provide me an adhoc example of such binding?

THANK YOU! With respect to this library, what is considered an EdiMessage? I am trying to understand how this library process loops.

THANK YOU! With respect to this library, what is considered an EdiMessage? I am trying to understand how this library process loops.