Aggregation<TInput, TOutput>
Class Aggregation<TInput, TOutput>
Aggregates data by the given aggregation methods. The aggregate is a partial-blocking transformation - only the aggregation values are stored in separate memory objects. When all rows have been processed by the aggregation, the aggregated values are written into the output.
Inheritance
Implements
Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
Type Parameters
Name | Description |
---|---|
TInput | Type of ingoing data. |
TOutput | Type of outgoing data. |
Examples
public class MyDetailValue
{
public int DetailValue { get; set; }
}
public class MyAggRow
{
[AggregateColumn(nameof(MyDetailValue.DetailValue), AggregationMethod.Sum)]
public int AggValue { get; set; }
}
var source = new DbSource<MyDetailValue>("DetailValues");
var agg = new Aggregation<MyDetailValue, MyAggRow>();
var dest = new MemoryDestination<MyAggRow>();
source.LinkTo<MyAggRow>(agg).LinkTo(dest);
Constructors
Aggregation()
Declaration
Aggregation(Action<TInput, TOutput>)
Declaration
Parameters
Type | Name | Description |
---|---|---|
Action<TInput, TOutput> | aggregationAction | Sets the AggregationAction |
Aggregation(Action<TInput, TOutput>, Func<TInput, object>)
Declaration
Parameters
Type | Name | Description |
---|---|---|
Action<TInput, TOutput> | aggregationAction | Sets the AggregationAction |
Func<TInput, object> | groupingFunc | Sets the GroupingFunc |
Aggregation(Action<TInput, TOutput>, Func<TInput, object>, Action<object, TOutput>)
Declaration
Parameters
Type | Name | Description |
---|---|---|
Action<TInput, TOutput> | aggregationAction | Sets the AggregationAction |
Func<TInput, object> | groupingFunc | Sets the GroupingFunc |
Action<object, TOutput> | storeKeyAction | Sets the StoreKeyAction |
Properties
AggregateColumns
This list will be used to set the AggregationAction. This also works with ExpandoObjects.
Declaration
Property Value
Type | Description |
---|---|
ICollection<AggregateColumn> |
AggregationAction
This action describes how the input data is aggregated. Not needed if you use the AggregateColumn in your object or pass a list to the AggregateColumns property.
Declaration
Property Value
Type | Description |
---|---|
Action<TInput, TOutput> |
AggregationCondition
When the aggregation condition is set, the pre-defined aggregation methods are only executed if this
condition evaluates to true. Only applicable if you set AggregateColumn attributes on your object or
if you defined your columns via the
AggregateColumns property.
This func will be invoked before every aggregation (e.g. every count is Count is set
for a property, and contains the currently processed row along with the current property name and aggregation method.
Declaration
Property Value
Type | Description |
---|---|
Func<TInput, AggregationMethodInfo, bool> |
GroupColumns
This list will be used to set the GroupingFunc and the StoreKeyAction. This also works with ExpandoObjects.
Declaration
Property Value
Type | Description |
---|---|
ICollection<GroupColumn> |
GroupingFunc
This Func defines how the object for grouping data is retrieved. Not needed if you use the GroupColumn in your object or pass a list to the GroupColumns property.
Declaration
Property Value
Type | Description |
---|---|
Func<TInput, object> |
SourceBlock
SourceBlock from the underlying TPL.Dataflow which is used as output buffer for the component.
Declaration
Property Value
Type | Description |
---|---|
ISourceBlock<TOutput> |
Overrides
StoreKeyAction
This action defines how the grouping object is written back into the aggregated object. Not needed if you use the GroupColumn in your object or pass a list to the GroupColumns property.
Declaration
Property Value
Type | Description |
---|---|
Action<object, TOutput> |
TargetBlock
TargetBlock from the underlying TPL.Dataflow which is used as input buffer for the component.
Declaration
Property Value
Type | Description |
---|---|
ITargetBlock<TInput> |
Overrides
Methods
CheckParameter()
Declaration
Overrides
CleanUpOnFaulted(Exception)
Declaration
Parameters
Type | Name | Description |
---|---|---|
Exception | e |