This is a mirror of official site: http://jasper-net.blogspot.com/

LINQ To XML Tutorials with Examples

| Monday, August 30, 2010
   A lot of developers over the past few months have requested us for tutorials focusing on LINQToXML. Although I have written a couple of them in the past, I decided to republish these tips in the form of a single post. In this article, we will explore 24 ‘How Do I’ kind of examples using LINQ to XML. I assume you are familiar with LINQ. If not, you can start off with LINQ by checking some tutorials over here and here.

   For this article, we will be using a sample file called ‘Employees.xml’ for all our samples which is available with the source code. So make sure you keep it handy with you while are practicing these examples. The mark up for Employees.xml is as follows:

<?xml version="1.0" encoding="utf-8" ?>
<Employees>
<Employee>
   <EmpId>1</EmpId>
   <Name>Sam</Name>  
   <Sex>Male</Sex>
   <Phone Type="Home">423-555-0124</Phone>
   <Phone Type="Work">424-555-0545</Phone>
  <Address>
     <Street>7A Cox Street</Street>
     <City>Acampo</City>
     <State>CA</State>
     <Zip>95220</Zip>
     <Country>USA</Country>
   </Address>
</Employee>
<Employee>
   <EmpId>2</EmpId>
   <Name>Lucy</Name>
   <Sex>Female</Sex>
   <Phone Type="Home">143-555-0763</Phone>
   <Phone Type="Work">434-555-0567</Phone>
   <Address>

Read more: dot net curry.com

Posted via email from .NET Info

0 comments: