Class RowDuplication

Creates one or more duplicates of your incoming row. Use the CanDuplicate property if you want to duplicate only particular rows.

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

Constructors

RowDuplication()

Declaration
    public RowDuplication()

RowDuplication(int)

Declaration
    public RowDuplication(int numberOfDuplicates)
Parameters
TypeNameDescription
intnumberOfDuplicates

RowDuplication(Predicate<ExpandoObject>, int)

Declaration
    public RowDuplication(Predicate<ExpandoObject> canDuplicate, int numberOfDuplicates)
Parameters
TypeNameDescription
System.Predicate<T><ExpandoObject>canDuplicate
intnumberOfDuplicates

RowDuplication(Predicate<ExpandoObject>)

Declaration
    public RowDuplication(Predicate<ExpandoObject> canDuplicate)
Parameters
TypeNameDescription
System.Predicate<T><ExpandoObject>canDuplicate

Implements