🟩 RemoveNotDuplicateRecords
Remove not duplicate rows from match result. Sometimes you may find that in some duplicate groups there are some false matches. In this instance, we can remove the record, not from the source but just the matching result.
public void RemoveNotDuplicateRecords(DataTable matchResult)
Parameters
Parameter | Type | Definition |
---|---|---|
matchResult | DataTable | Datatable with matching result. It should be same table that was returned by the MatchData function. |
Returns
void |
Returns
Updated over 3 years ago