Article: Combining Transactions

Index

Combining Transactions

EDIFileLoader allows developers to combine different ISA messages into folders. By default the EDI file structure is flat. However by setting the FlatStructure property to false ISA segments will be converted to top level folders

Example

// Create a new instance of EDIFileLoader
EDIFileLoader loader = new EDIFileLoader();

// Set the EDI data to load
loader.EDIDataString = “……”;

loader.FlatStructure = false;

// Load the data
EDILightWeightDocument loadedDocument = loader.Load();

Related Articles

Main Categories