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.