I have a .NET DataTable with the following content:
Date ID1 ID2
1/1/2014 1 a
1/1/2014 2 a
1/1/2014 3 a
2/1/2014 1 b
2/1/2014 2 b
2/1/2014 3 b
3/1/2014 1 c
3/1/2014 2 c
3/1/2014 3 c
How do I use datatable method to eliminate the duplicates so that it becomes
Date ID1 ID2
1/1/2014 1 a
2/1/2014 2 b
3/1/2014 3 c