Hi,
In my sql table one of column having XML column which hold data in xml format.
I want to fetch that sql table xml column data into c# code, stored it into string variable. once i store it into string variable i want to store all xml attribute key and value into Collection.
Note-->
XML column data available in below format
1
A
How i achieve it in c#.net?
Please suggest any one approach!
In my sql table one of column having XML column which hold data in xml format.
I want to fetch that sql table xml column data into c# code, stored it into string variable. once i store it into string variable i want to store all xml attribute key and value into Collection.
Note-->
XML column data available in below format
How i achieve it in c#.net?
Please suggest any one approach!
VulpesPosted Jan 27, 2013, 5:11 AM
In practice, of course, xmlData would be read from the database:
// ....