Querying a Runtime Dataset with LINQ

  • Thread starter Thread starter Ant
  • Start date Start date
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
 
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
 
Back
Top