Title here
Summary here
The RowTransformation will apply the transformation function to each row of data.
Name | Description |
---|---|
TInput | The type of ingoing data. |
RowTransformation<InputType, OutputType> trans = new RowTransformation<InputType, OutputType>(
row => {
return new OutputType() { Value = row.Value + 1 };
});
Type | Name | Description |
---|---|---|
Func<TInput, TInput> | rowTransformationFunc |
Type | Name | Description |
---|---|---|
Func<TInput, TInput> | rowTransformationFunc | |
Action | initAction |