Class TransformAggregation<TInputAccumulate>
Holds the accumulation values. The seed, accumulation, and output delegates in AggregateTransform<TInputAccumulateOutput> takes this instance as a parameter. Also see the examples in Custom Dataflow Aggregations.
Inherited Members
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public class TransformAggregation<TInputAccumulate> : TransformAggregationBase<TInputAccumulate> where TInputAccumulate : class
Type Parameters
| Name | Description |
|---|---|
| TInputAccumulate | The type of the incoming rows as well as the accumulation value. |
Properties
Accumulation
Gets or sets the accumulation value. Either update its members, or replace the accumulation value altogether.
Declaration
public TInputAccumulate Accumulation { get; set; }
Property Value
| Type | Description |
|---|---|
| TInputAccumulate |
Methods
ToString()
Returns a String that represents this instance.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| String |
Overrides
See Also
TransformAggregationBase<TInput>
AggregateTransform<TInputAccumulateOutput>
TransformAggregation<TInput, TAccumulate>