stuck and need help

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

Ok.. heres what I have
two different datasouces. The tables are similar. I pull the data into a
dataset(table0 and table1).
what I want to be able to do, is compare the data on these tables... either
when i am querring the datasources or the dataset... I've somewhat looked at
LINQ, and had troubles with querring 2 tables...
I am thinking there has to be a way to querry the datasources.. or even
better.. write a querry against the two tables in my dataset
Any Help?
Brian
 
Ok.. heres what I have
two different datasouces.  The tables are similar.  I pull the data into a
dataset(table0 and table1).
what I want to be able to do, is compare the data on these tables... either
when i am querring the datasources or the dataset... I've somewhat lookedat
LINQ, and had troubles with querring 2 tables...
I am thinking there has to be a way to querry the datasources.. or even
better.. write a querry against the two tables in my dataset
Any Help?
     Brian

Why not just do a column by column, row by row comparison?

You will have to take nulls into account if there are any.
 
Brian,

You have written it simple: "Compare the data on these tables", what does
that mean, the same amount of rows, the same order, the same values etc.
etc.

Cor
 
Back
Top