/// <summary>
 /// Reads consumption-compilant portions of Data from the underlaying data-source
 /// </summary>
 /// <returns>an IEnumerable of the base-set</returns>
 protected override IEnumerable <IDictionary <string, CsvDataRecord> > ReadData()
 {
     return(parser.ReadData());
 }
Пример #2
0
 protected override IEnumerable <IBasicKeyValueProvider> ReadData()
 {
     return(from t in innerSource.ReadData() select new CsvDictionaryWrapper(t));
 }