Class RowTransformation

The RowTransformation will apply the transformation function to each row of data.

Inheritance
object
DataFlowSource<ExpandoObject>
DataFlowTransformation<ExpandoObject, ExpandoObject>
RowTransformation<ExpandoObject, ExpandoObject>
RowTransformation<ExpandoObject>
RowTransformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class RowTransformation : RowTransformation<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

RowTransformation()

Declaration
    public RowTransformation()

RowTransformation(Func<ExpandoObject, ExpandoObject>, Action)

Declaration
    public RowTransformation(Func<ExpandoObject, ExpandoObject> rowTransformationFunc, Action initAction)
Parameters
TypeNameDescription
System.Func<T, TResult><ExpandoObject, ExpandoObject>rowTransformationFunc
System.ActioninitAction

RowTransformation(Func<ExpandoObject, ExpandoObject>)

Declaration
    public RowTransformation(Func<ExpandoObject, ExpandoObject> rowTransformationFunc)
Parameters
TypeNameDescription
System.Func<T, TResult><ExpandoObject, ExpandoObject>rowTransformationFunc

Implements