Processes data from the specified IDataReader.
Namespace: NReco.PivotData
Assembly: NReco.PivotData (in NReco.PivotData.dll) Version: 1.4.1
Syntax
Parameters
- dataReader
- Type: System.DataIDataReader
data reader instance
Remarks
Examples
DataTable tbl; // this is table with columns: "col1", "col2", "value" var pvtData = new PivotData( new []{"col1","col2"}, new SumAggregatorFactory("value") ); pvtData.ProcessData(new DataTableReader(tbl));
See Also