I can get it to return the single column, but I can't seem to figure out how to get it to give me the entire row instead of just the column values.
Help!!
the fields it should return are, VDMList and Table.
var duplicates = dt.AsEnumerable()
.Select(dr => dr.Field<string>("VMDList"))
.GroupBy(x => x)
.Where(g => g.Count() > 1)
.Select(g => g.Key)
.ToList();
columns of DT Table, VDMList
output is
4 | 02,2
12 | 03,3
15 | 02,2