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