You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm a .Net developer but brand new to EDI. Are there some examples on how to structure and annotate POCO's from the EDI documentation? I've looked at the example POCO's here but it's still not clear how to translate from the documentation to the classes.
Thanks.
The text was updated successfully, but these errors were encountered:
var grammar = EdiGrammar.NewX12();
var interchange = default(GenericX12);
using (var stream = new StreamReader(filePath))
{
interchange = new EdiSerializer().Deserialize<Generic834>(stream, grammar);
}
I need to deserialize the following EDI format/files into POCO classes.
https://static.ark.org/eeuploads/adhe/TS130.pdf
I'm a .Net developer but brand new to EDI. Are there some examples on how to structure and annotate POCO's from the EDI documentation? I've looked at the example POCO's here but it's still not clear how to translate from the documentation to the classes.
Thanks.
The text was updated successfully, but these errors were encountered: