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