Tag: LINQ to XML
-
LINQ to XML in a Nutshell
Data may exist in much form. You may have data in relational tables residing on a relational database or portable data in form of XML. Since data exist in many forms, obviously there are many ways to manipulate or access them. One of the most popular ways of sharing data is as XML. Considering prominent…
-
Reading XML file through LINQ: few Tips
In this post I will discuss how could be read XML file using LINQ. We will see some tips as well. Let us say we have XML file as below, this file is stored on D drive. This XML contains information about books. Data.Xml Fetching all the Books To fetch all the Books,…