Class RowDuplication
Creates one or more duplicates of your incoming row. Use the CanDuplicate property if you want to duplicate only particular rows.
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 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
Type | Name | Description |
---|---|---|
int | numberOfDuplicates |
RowDuplication(Predicate<ExpandoObject>, int)
Declaration
public RowDuplication(Predicate<ExpandoObject> canDuplicate, int numberOfDuplicates)
Parameters
Type | Name | Description |
---|---|---|
System.Predicate<T><ExpandoObject> | canDuplicate | |
int | numberOfDuplicates |
RowDuplication(Predicate<ExpandoObject>)
Declaration
public RowDuplication(Predicate<ExpandoObject> canDuplicate)
Parameters
Type | Name | Description |
---|---|---|
System.Predicate<T><ExpandoObject> | canDuplicate |