CsvDataSource
CsvDataSource class
Provides access to data of a CSV file or stream to be used while assembling a document.
public class CsvDataSource
Constructors
Name | Description |
---|---|
CsvDataSource(Stream) | Creates a new data source with data from a CSV stream using default options for parsing CSV data. |
CsvDataSource(string) | Creates a new data source with data from a CSV file using default options for parsing CSV data. |
CsvDataSource(Stream, CsvDataLoadOptions) | Creates a new data source with data from a CSV stream using the specified options for parsing CSV data. |
CsvDataSource(string, CsvDataLoadOptions) | Creates a new data source with data from a CSV file using the specified options for parsing CSV data. |
Remarks
To access data of the corresponding file or stream while assembling a document, pass an instance of this class as a data source to one of DocumentAssembler
.AssembleDocument overloads.
In template documents, a CsvDataSource
instance should be treated in the same way as if it was a DataTable instance. For more information, see template syntax reference (https://docs.groupdocs.com/display/assemblynet/Template+Syntax+-+Part+1+of+2#TemplateSyntax-Part1of2-UsingDataSources).
Data types of comma-separated values are determined automatically upon their string representations. So in template documents, you can work with typed values rather than just strings. The engine is capable to automatically recognize values of the following types:
long?
double?
bool?
DateTime?
string
Note that for automatic recognition of data types to work, string representations of comma-separated values should be formed using invariant culture settings.
To override default behavior of CSV data loading, initialize and pass a CsvDataLoadOptions
instance to a constructor of this class.
See Also
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly