Hi!
I also asked this question in C# group with no results:
I have 2 datasets loaded with data from two xml files having the same
schema. The files contain data from yesterday and today. I'd like to merge
both datasets in such a way that the resulting dataset should have all the
today's data overriding yestrerday's data. CATCH: the today's
dataset contains only the daily changes (DELTA) and merging should not
remove all
unchanged records from yesterday.
What's the most efficient way of doing so ? I thought ds.Merge() method
would work for me, but I can't make it work. It seems that I can append two
datasets but not merge
ds1.Merge(ds2,false)
Many Thanks in Advance,