I am using Visual Studio 2013 Ultimate with SQL Server 2008 R2 version.
I have created my web service from which I return the custom XML in StringBuilder data to my desktop application (C#).
So my question is how to store that XML and how to read it?
Demo of my custom xml data:
<TableName>students
<row>
<StudentId><![CDATA[1]]></StudentId>
<StudentName><![CDATA[abc]]></StudentName>
<Password><![CDATA[password]]></Password>
</row>
</TableName>
This is just one example of data, there are multiple data coming like this format.
Please someone help me how to store and read this XML!