...
In addition to the Mapping
and SearchParameters
configuration, which all DataProvider
s of the Data interface require, the CsvDataProvider
can be configured via the Option
element:
Code Block | ||
---|---|---|
| ||
<CsvDataProvider DisplayName="Customer addresses"> <Options> <FilePath>\\fileshare\addressdata.csv</FilePath> <HasHeaders>true</HasHeaders> <Delimiter>,</Delimiter> </Options> ... </CsvDataProvider> |
FilePath
string, path to csv fileHasHeader
bool, indication whether first row is a header row
If there are no headers, the columns will be numbered (0, 1, ...) (important forSearchParameters
andMapping
).Delimiter
string, indication of the delimiter
...