Question : how to add two Dataset...

i need to add 2 or datasets or dataview.


like
DataSet =  DataSet1 + DataSet2 + DataSet3

or

DataView = DataView1 + DataView2 + DataView3

i never tried it and i dont think it would work..

Answer : how to add two Dataset...

you can try
Dataset myDS = new DataSet();
myDS.Merge(ds1);
myDS.Merge(ds2);
myDS.Merge(ds3);

// as long as all datasets contains same data.

Regards,
Ready1
Random Solutions  
 
programming4us programming4us