ds.ReadXml(filename);//Filename is the path of xml file.
so its loaded ATLAS,TP,Procedure,Test,History table in dataset not consider about the Tp attribute Version No.
My requirement is i want to load same table but only particular Version related data :
suppose Version=1.0
I want only
<TP Version="1.0">
<Procedure>
<Test>
<Name>Priyaranjan</Name>
<Age>29</Age>
<Address>Bangalore</Address>
</Test>
<Test>
<Name>Sanjeev</Name>
<Age>28</Age>
<Address>Hyderabad</Address>
</Test>
</Procedure>
<History>
<A>1</A>
<B>2</B>
<C>3</C>
</History>
</TP>