Generic Way To Export Data To Any Textformat In C#

Introduction 

 
Let us consider this very common scenario where you have an application used by a multitude of customers. This application generates invoices and each customer wants to export these invoices and import them into their accounting.
 
They all need a different format and none is the same. Some need CSV, others XML and others yet another format, and they all expect a different structure.
 
In this article, I will show you a way to export the data (invoices in my example) using only very little source code and without the need to do any extra coding whenever a new export is required.
 
I repeat NO CODING!
 
The secret is called Razor and a small library called RazorEngine from Antaris. RazorEngine brings the razor technology -as we know it- from asp.net MVC to your C# application. It is designed to generate HTML but you will be amazed how well it performs to generate any text-based output.
 

Base mechanism

 
Take a look at a very basic usage of RazorEngine (Copied from the RazorEngine project on Github)
  1. using RazorEngine;  
  2. using RazorEngine.Templating; // For extension methods.  
  3.   
  4. string template = "Hello @Model.Name, welcome to RazorEngine!";  
  5. var result =  
  6.     Engine.Razor.RunCompile(template, "templateKey"nullnew { Name = "World" });  
The variable 'result' will contain "Hello World, welcome to RazorEngine!". You basically provide a template and a model (as we do all the time in MVC) and the engine gives a string as a result. Feel it coming?
 

The export program

 
The actual export program is only a small extension to the code found here above (under Base mechanism)
  1. public void ExportSalesInvoices(List<SalesInvoice> SalesInvoices)  
  2. {  
  3.     string SalesInvoiceTemplateList=@"c:\templates\template1.txt,c:\templates\template2.txt";   //Just as an example ...  
  4.       
  5.     int counter = 1;  
  6.     foreach (string templateFileName in SalesInvoiceTemplateList.Split(new[]{','}))  
  7.     {  
  8.         if (string.IsNullOrEmpty(templateFileName))  
  9.             continue;  
  10.   
  11.         string template = File.ReadAllText(templateFileName);  
  12.         string templateKey = Guid.NewGuid().ToString();  
  13.         var result = Engine.Razor.RunCompile(template, templateKey, null, SalesInvoices);  
  14.         string fileName = GetFileName(@"c:\exported invoices\", $"-{counter++}");  
  15.         File.WriteAllText(fileName, result);  
  16.     }  
  17. }  
This is all the code your application requires.
 
Some explanation
 
The templates are stored in a textfile on disk (line 11) but they can also come from a database of a web service, etc ...
 
The output is also stored on disk (line 15) but again, you can store it wherever you want.
 
The template key is a GUID that is generated each time the export is executed (line 12). This way the template is compiled each time, which is not very efficient so there is definitely room for improvement. If you want to run the export with the same template on different instances of the model, you could do a RunCompile() the first time and a Run() subsequently.
 

The invoice example 

 
Here is the model for the invoice export example. 
  1. public class SalesInvoice  
  2. {  
  3.     public int SalesInvoiceId { getset; }  
  4.     public int InvoiceNo { getset; }  
  5.     [ForeignKey("Customer")]  
  6.     public int CustomerId { getset; }  
  7.     public Customer Customer { getset; }  
  8.     public DateTime InvoiceDate { getset; }  
  9.     public DateTime? InvoiceDueDate { getset; }  
  10.     public List<SalesInvoiceDetail> SalesInvoiceDetails { getset; }  
  11. }  
As you can see, very straight forward, nothing special. The model for Customer and SalesInvoiceDetail is left out to keep the listed code limited.
 
A CSV export template example:
  1. @model List<ShopPro.MasterData.SalesInvoice>    
  2. type,id,name,contact,language,currid,category,paydelay,paymode,vattype,vatnumber,vatcountry,vatid,vatpc,centaccid,partaccid,agent,adrcountry,adrzip,adrcity,adrstreet1,adrstreet2,phone1,phone2,fax,email,bank1,bank2,blocked,creditmax    
  3. @foreach(var customer in Model.Select(x=>x.Customer).Distinct())    
  4. {    
  5.    <text>"C","@customer.CompanyId","@customer.Name","@customer.ContactName","@(customer.Language!=null ? customer.Language.LanguageCode : "")","@(customer.Currency!=null ? customer.Currency.CurrencyCode : "")","CL","",""," ","@customer.VatNumber","@(customer.Country!=null ? customer.Country.CountryCode : "")","",0.00,"","","","@(customer.Country!=null ? customer.Country.CountryCode : "")","@customer.Zip","@customer.City","@customer.Address","","@customer.Phone","","@customer.Fax","@customer.Email","","",F,0.00</text>    
  6. }    
  7. @foreach(var invoice in Model)  
  8. {  
  9.    <text>@invoice.InvoiceNo;@invoice.InvoiceDate; ... etc ...</text>  
  10. }   
If you are familiar with MVC and razor, you will immediatly recognize what's happening here. 
 
Line1: defines the model for the template: a LIst<SalesInvoice>
Line2: Exports the first line of the CSV with the fieldnamelist
Line3: A list of all distinct customers is retrieved and used as a source for the foreach
Line5: export of the customer info
Lines7- export the invoices themselves, 1 line for each invoice. Probably this part will be put in a separate template and output but for the example customers and invoices are exported in the same output.
 

An XML export template example 

 
The XML sample template is somewhat more complicated:
  1. @model List<ShopPro.MasterData.SalesInvoice>    
  2. @{    
  3.     var culture=new System.Globalization.CultureInfo("en-us");    
  4.     string mask="0.00";    
  5. }    
  6. <text>    
  7. <?xml version="1.0" encoding="UTF-8" ?>    
  8. <Invoices></text>    
  9. @foreach(var invoice in Model)    
  10. {    
  11. <text>        
  12.     <Invoice>    
  13.         <No>@invoice.InvoiceNo</No>    
  14.         <InvoiceDate>@invoice.InvoiceDate</InvoiceDate>    
  15.         <CustomerId>@invoice.CustomerId</CustomerId>    
  16.         <AccountSummaries>    
  17. </text>    
  18.     foreach (var accountSummary in invoice.SalesInvoiceDetails.GroupBy(x => x.AccountNumber).Select(x => new { AccountNumber = x.Key, TotalBase = x.Sum(y => y.TotalBase), TotalVatInc = x.Sum(y => y.TotalVatInc) }))    
  19.     {    
  20. <text>        
  21.             <AccountSummary>    
  22.                 <AccountNumber>@accountSummary.AccountNumber</AccountNumber>    
  23.                 <TotalBase>@accountSummary.TotalBase.ToString(mask, culture)</TotalBase>    
  24.                 <TotalVatInc>@accountSummary.TotalVatInc.ToString(mask, culture)</TotalVatInc>    
  25.             </AccountSummary>    
  26. </text>    
  27.     }       
  28. <text>    
  29.         </AccountSummaries>    
  30.     </Invoice>    
  31. </text>    
  32. }    
  33. <text>    
  34. </Invoices>    
  35. </text>     
Line1: defines he model for the template: a List<SalesInvoice>
Line2-5 : defines the culture and mask to convert the amounts to strings
Line7: the xml starts
Line9: loop through the invoices in the model 
Line12: xml for the invoice header
Line18: calculate totals per Account and vatrate (found in the SalesInvoiceDetails) and loop through those totals
Line21: xml for the account summary
Line29: rest of the xml
 
Isn't that superpowerful, flexible and elegant?

Conclusion

 
This razor based export has a lot of advantages:
  • powerfull - it can handle virtually any scenario,whether your data need to be grouped, sorted, filtered or aggregated, the razor export can take care of it
  • flexibel - smaller and big changes can be made without recompiling your application. The export has a small bug, just change the template and you're done!
  • elegant - you don't have to learn a new language (if you know razor)
  • Easy - a template can be modified, simple ones even be created by someone that isn't a developer.

Some Background

 
In the first version of my application to export its invoices, I rapidly noticed, this would be a never-ending story, hardcoding the export every time a new customer needed his very own export. 
 
In my search of finding a generic way to export the invoices my application generates, I considered XSLT which is a transformation language that transforms XML into any format. The drawback of this solution was that it was based on XML and more importantly, I needed to learn yet another language (xslt). 
 
So I continued searching and at a certain moment, I realized that razor did exactly what I was looking for with a language I already knew and with very powerful possibilities. 


Similar Articles