I have a table that contains a bunch of duplicates. These are exact duplicates, minus the primary key column, which is an integer identity column.
Using EF and LINQ, how do I find the duplicates and delete them, leaving only one copy.
I found the duplicates and a count of each using SQL and SSMS. I'm just don't know where to start with LINQ.
Thanks!