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.
var source = new DbSource<InputType>("SourceTable");
RowDuplication<InputType> duplication = new RowDuplication<InputType>(3);
var dest = new CsvDestination<InputType>("output.csv");
source.LinkTo(duplication).LinkTo(dest);
Type | Name | Description |
---|---|---|
int | numberOfDuplicates |
Type | Name | Description |
---|---|---|
Predicate<ExpandoObject> | canDuplicate |
Type | Name | Description |
---|---|---|
Predicate<ExpandoObject> | canDuplicate | |
int | numberOfDuplicates |