I want to remove duplicates from my DataTable so I'm using DataTable.AsEnumerable().Distinct(DataRowComparer.Default) but it doesn't do what I need. I think because each duplicate row has it's unique primary key column.

How can I do what I need? Write my own DataRowComparer? I don't want - because the default must works.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You can use DistinctBy from the MoreLINQ project. Basically you specify a projection from a data row to the columns you're interested in, and it will use that. For example:

var rows = DataTable.AsEnumerable()
                    .DistinctBy(row => new { Name = row["Name"],
                                             Age = row["Age"] });

When you say "the default must work" that's basically not going to happen if you have a normal primary key column. Two rows with the different primary key values aren't duplicates of each other, because they differ in that data.

Another option would be to project to data rows without that primary key column, and then use the normal Distinct method.

link|improve this answer
MoreLINQ is cool. Thanks for the pointer to it! – Justin Grant Nov 17 '09 at 6:09
feedback

Maybe you could use the defaultview.rowfilter to launch a query that group by unique columns, and SELECT the MIN (or MAX) RowId as the row to keep.

Look at this question for more info abour the query.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.