CrunkByte wrote:
> Hi all,
>
> I'm trying to merge dataset in with the .net compact framework.
> Unfortunately, it does not have a Merge() method. I was wondering if
I
> could bypass this shortcomming by having a source DataSet read into a
> Destination DataSet using ReadXML but I want to keep the current data
> on destination DataSet. I hope that makes since to someone out there
as
> well.
>
>
>
> Thanks for any feedback!
>
>
> Jason
For a work-around i used cloned the tables into the other dataset:
//destination dataset dsDest
dsDest.Tables.Add(dsSource.Tables["TableINeed"].Clone());
|