Connection descriptor representing a CSV file that you intend to read/write/modify/etc. For CSV files, your mapping may map either to column names (which assumes the first row of the CSV is a header row) or column indexes (1-based, since that's what spreadsheets use). See CsvConnectionType for more information on how CSV descriptors can be configured.
Inheritance: ConnectionDescriptor
Exemplo n.º 1
0
 /// <summary>
 /// Instantiates the data access layer with the connection descriptor for the DB.
 /// </summary>
 /// <param name="connDesc">The connection descriptor that is being used by this FastDaoLayer.</param>
 public CsvDaLayer(CsvDescriptor connDesc)
     : base(connDesc, true)
 {
     _connDesc = connDesc;
 }