Class RowMultiplication

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

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class RowMultiplication : RowMultiplication<ExpandoObject, ExpandoObject>, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTask

Constructors

RowMultiplication()

Declaration
    public RowMultiplication()

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

Declaration
    public RowMultiplication(Func<ExpandoObject, IEnumerable<ExpandoObject>> multiplicationFunc)
Parameters
TypeNameDescription
Func<ExpandoObject, IEnumerable<ExpandoObject>>multiplicationFunc

Implements