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

Re: Querying a Runtime Dataset with LINQ by Cor

Cor
Wed Apr 16 12:43:32 CDT 2008

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


"Ant" <Ant@discussions.microsoft.com> schreef in bericht
news:CE4B364B-FAD6-47DE-B3BC-AC018C4D4A75@microsoft.com...
> 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