This is my datatable
X Y P Str1 C1 10 Str1 C1 5 Str1 C1 1 Str1 C1 2 Str2 C1 25 Str2 C1 4 Str1 C2 411 Str1 C2 2356 Str2 C2 12 Str2 C2 33 I am trying to get distinct rows based on X and Y columns and get max value of P column using linq to dataset
X Y P Str1 C1 10 Str2 C1 25 Str1 C2 2356 Str2 C2 33 -
var query0 = (from row in tablo.AsEnumerable() select new { X = row.Field<string>("X"), Y = row.Field<string>("Y"), }).Distinct(); How can i do? Thanks.