DataSet Schema sync.
Posted
by np
on Stack Overflow
See other posts from Stack Overflow
or by np
Published on 2010-04-01T14:30:32Z
Indexed on
2010/04/01
14:33 UTC
Read the original article
Hit count: 135
c#
Here is my scenario: I have a DataSet1 that i load from a DataSet1.xsd which has a few datatables. After laoding the DataSet1 we add data to it and serialize it and save it to a file. But the next day we make changes to the schema of the dataset for example added a couple of columns to the schema. Now when we load the existing DataSet from the serialized file this will not have the columns that were added in the xsd file. We need to sync the dataset with the new schema. How to? Thanks N
© Stack Overflow or respective owner