i have datatable… in that i have a duplicate rows
how to remove duplicates rows in datatable… ?
rows should be remove from the datatable
i have datatable… in that i have a duplicate rows
how to remove duplicates rows in datatable… ?
rows should be remove from the datatable
you can use groupby function to remove duplicates
datatable.asenumerable.group(function(r) r(“columnname”).tostring).select(function(grp) grp.first).copytodatatable
columnnames pass your columnname on which basis you want to remove the duplicates rows
when duplicate is measured on all columns:
When duplicated is measured on a column Set:
ColSet / single Col
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.