Querying a Runtime Dataset with LINQ

A

Ant

Hi,
Can you query a run time Dataset with LINQ or must the Dataset be strongly
typed?
If not, how can this be simply accomplished?

Many thanks for any ideas on this

Ant
 
C

Cor Ligthert[MVP]

Ant,

A DataSet is a collection of DataTables and Relations
A DataTable is a collection of DataRows and DataColumns
A DataRow is a collection of Items.

(All returned as referenced objects)

Why do you think that you cannot use Linq with collections?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top