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