I am using linq over dataset have multiple columns and grouping on one column with this code:
Dim Groups = From n In data _
Group n By s = n.Field(Of String)("name") Into Group Select s
but it results in only the first row and I checked the data it's supposed to return 13 rows.