Hi,
I am trying to create the datset from the following xmlstring. The only unique thing about the xml is it has two similar child node version with different values for the parent node object. when i look at the column returned from the dataset, it doesnot contain the column for the repeating nodes. version
any suggestion is appreciated.
string xml = "<?xml version=\"1.0\"?>\n<root>\n
<object >\n
<version>1.0</version>\n
<version>CURRENT<version>\n
<object_id>123</object_id>\n
<object_name>Documnet</object_name>\n
</object>\n</root>\n";
StringReader xmlSR = new StringReader(xml);
DataSet dsInbox = new DataSet();
dsInbox.ReadXml(xmlSR, XmlReadMode.Auto);
return dsInbox;
Thanks
Gaurav