Create Dataset from a Dataset?

  • Thread starter Thread starter Anil Gupte
  • Start date Start date
A

Anil Gupte

I have a dataset in memory which I have created. I now want to take two
tables in that Dataset (in memory not in a db) and use an inner join to
create a new dataset. How can I accomplish this? I have taken a look at
LINQ but I have failed to make much headway there. Is there an easier way?

Thanx,
 
Anil,

There is not much possibilities to make an inner join (what do you mean with
what, an sql transact inner join), the only one I know is to make one table
the major, loop through it, get the equals from the other tables and make a
new table.

A dataset is in no way a database you know.

Cor
 
Back
Top