Class RowMultiplication

This transformation allow you to transform one row of your input data into multiple rows.

Inheritance
object
DataFlowSource<ExpandoObject>
DataFlowTransformation<ExpandoObject, ExpandoObject>
RowMultiplication<ExpandoObject, ExpandoObject>
RowMultiplication
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 RowMultiplication : RowMultiplication<ExpandoObject, ExpandoObject>, IDataFlowLogging, ILoggableTask, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

RowMultiplication()

Declaration
    public RowMultiplication()

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

Declaration
    public RowMultiplication(Func<ExpandoObject, IEnumerable<ExpandoObject>> multiplicationFunc)
Parameters
TypeNameDescription
System.Func<T, TResult><ExpandoObject, System.Collections.Generic.IEnumerable<T><ExpandoObject>>multiplicationFunc

Implements