Class CachedRowTransformation

Implemented by transformations that have one or more inputs of the same type and one or more outputs of the same type

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

Constructors

CachedRowTransformation()

Declaration
    public CachedRowTransformation()

CachedRowTransformation(Func<ExpandoObject, IEnumerable<ExpandoObject>, ExpandoObject>)

Declaration
    public CachedRowTransformation(Func<ExpandoObject, IEnumerable<ExpandoObject>, ExpandoObject> rowTransformationFunc)
Parameters
TypeNameDescription
System.Func<T1, T2, TResult><ExpandoObject, System.Collections.Generic.IEnumerable<T><ExpandoObject>, ExpandoObject>rowTransformationFunc

Implements