vote up 2 vote down star

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.

flag

3 Answers

vote up 4 vote down check

Use the DataTable.Select() method.

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.

link|flag
looks like a good viable option will check it out tomorrow and report back if it works for what I need. – ABParsons Apr 14 at 22:15
this method worked best for me. it was simple and got what i needed done. easy to understand to. – ABParsons Apr 19 at 17:16
Glad it worked out for you! – TheTXI Apr 19 at 17:20
vote up 4 vote down

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 IEnumerable<DataRow> and then you can use normal LINQ to Object operators. The DataRowExtensions extensions make this simpler.

If you're using a strongly typed DataSet, the queries look even better.

I prefer this option over DataTable.Select - all that messing about with escaping, formatting string queries etc feels like a real backward step.

link|flag
looks like a good viable option will check it out tomorrow and report back if it works for what I need. – ABParsons Apr 14 at 22:14
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.