Read xml file and import only one table from multiple tables from xml file in the dataset at a time.
- by Harikrishna
I want to store the data in the xml file and retrieve the data from that. I have defined more than table in that xml file.Now to read the tables I am using
dataset ds = new dataset();
ds.ReadXml(xmlfilepath);
Now this dataset contains all the tables those are in xml file when we read the xml file into dataset. But I want only one specified table at a time in a dataset by condition. Like there are PersonalInfo,OtherInfo,PropertiesInfo tables in the xml file. But I want only OtherInfo table in dataset what I should do ?