I have a VB.Net data set that contains data from multiple tables. Does anyone have any good suggestions on how to query data out of the dataset. I want to run SQL-like queries on a dataset to extract data that fits a certain "where" statement.
|
|
|
|
|
|
|
Use the Here is some information from the official MSDN documentation. As said in later posts, Linq is another possibility and will probably give you much more versatility, which you may not need depending upon your own requirements. |
||||||
|
|
|
If you're using .NET 3.5, you can use LINQ to DataSet. Basically you use DataTableExtensions.AsEnumerable (an extension method) to access the rows as an If you're using a strongly typed I prefer this option over |
||
|
|
|
You should try using Linq. It will provide you lots of features regarding querying your objects. try getting more information here: http://msdn.microsoft.com/en-us/netframework/aa904594.aspx Or google for Linq to DataSets |
||
|
|
