Title here
Summary here
Creates one or more duplicates of your incoming row. Use the CanDuplicate property if you want to duplicate only particular rows.
public class RowDuplication : RowDuplication<ExpandoObject>, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTaskvar source = new DbSource<InputType>("SourceTable");
RowDuplication<InputType> duplication = new RowDuplication<InputType>(3);
var dest = new CsvDestination<InputType>("output.csv");
source.LinkTo(duplication).LinkTo(dest); public RowDuplication() public RowDuplication(int numberOfDuplicates)| Type | Name | Description |
|---|---|---|
| int | numberOfDuplicates |
public RowDuplication(Predicate<ExpandoObject> canDuplicate)| Type | Name | Description |
|---|---|---|
| Predicate<ExpandoObject> | canDuplicate |
public RowDuplication(Predicate<ExpandoObject> canDuplicate, int numberOfDuplicates)| Type | Name | Description |
|---|---|---|
| Predicate<ExpandoObject> | canDuplicate | |
| int | numberOfDuplicates |