Processes data from enumerable data.
Namespace:
NReco.PivotData
Assembly:
NReco.PivotData (in NReco.PivotData.dll) Version: 1.4.1
public virtual void ProcessData(
IEnumerable data,
Func<Object, string, Object> getValue
)
Public Overridable Sub ProcessData (
data As IEnumerable,
getValue As Func(Of Object, String, Object)
)
public:
virtual void ProcessData(
IEnumerable^ data,
Func<Object^, String^, Object^>^ getValue
)
abstract ProcessData :
data : IEnumerable *
getValue : Func<Object, string, Object> -> unit
override ProcessData :
data : IEnumerable *
getValue : Func<Object, string, Object> -> unit
Parameters
- data
- Type: System.CollectionsIEnumerable
IEnumerable data stream - getValue
- Type: SystemFuncObject, String, Object
accessor used for getting field values from iterated objects
When LazyTotals=False and
ProcessData(IEnumerableIDictionaryString, Object) is called for the first time
all dimension totals are calculated for a whole batch. For all next calls totals are updated incrementally.
Reference