Merging DataSet with Schema

  • Thread starter Thread starter BenLeino
  • Start date Start date
B

BenLeino

Hi there,

how can I merge a dataset with a dataschema? The dataset I have was
serialized before and all data fits the schema specifications. Then I read
the serialized dataset with readxml. How can I merge the schema now?

Thx
BenLeino
 
Hi,

If I understand you correctly, then you have two files - one with the schema
and another one with the data, which fits this schema. Right? If this is the
case, then you could load schema into dataset first using ReadXmlSchema
method of the Dataset and then load actual data with the IgnoreSchema
option.
 
Back
Top