I would like to implement a "Group By" for my datatable. Has any one any suggestions?
update:
c#, .net 2.0
I would like to implement a "Group By" for my datatable. Has any one any suggestions?
update:
c#, .net 2.0
Use LINQ to DataSets and the GroupBy extension methods.
Add assembly System.Data.DataSetExtensions.dll to your project to get access to the AsEnumerable() extension method.