I have a table containing a bunch of duplicates. These are exact duplicates, with the exception of the primary key column, which is an integer identifier column.
Using EF and LINQ, how to find duplicates and delete them, leaving only one copy.
I found duplicates and the amount of each of them using SQL and SSMS. I just don't know where to start LINQ.
Thanks!
source share