Remove any records with the same IDs (not removing only the duplicates) – Asp.net
Using C# .Net Core, I'm wanting to remove records/rows with duplicate IDs value, example: ID | Value1 ---------------- 321 | data_1 123 | data_2 321 | data_3 I want to completely remove BOTH rows with the same ID of 321,…