I would like to return an array of rows from datatable. The Array returned should be the datatable rows grouped on certain fields.
Ex
Dataset table
1 3 124
2 3 444
3 3 444
4 3 555
5 4 123
6 4 123
Rows Returned
3 123
4 123
3 444
3 555
Something like
dim dRows() as datarow = _
dataset.tablename.Select(???)
or a dataview of the table.
Any help would be appreciated. I don't want to write an ugly loop
Ex
Dataset table
1 3 124
2 3 444
3 3 444
4 3 555
5 4 123
6 4 123
Rows Returned
3 123
4 123
3 444
3 555
Something like
dim dRows() as datarow = _
dataset.tablename.Select(???)
or a dataview of the table.
Any help would be appreciated. I don't want to write an ugly loop