DataSet Schema sync.
- by np
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