Visual Basic.NET
  Home arrow Visual Basic.NET arrow Page 2 - LINQ to XML Programming Using Visual Basic...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
VISUAL BASIC.NET

LINQ to XML Programming Using Visual Basic.NET 2008
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 13
    2008-12-03

    Table of Contents:
  • LINQ to XML Programming Using Visual Basic.NET 2008
  • Loading/Searching XML document with LINQ to XML using Visual Basic 2008
  • Adding, Updating and Deleting from an XML document using LINQ to XML
  • Developing a complete form to work with LINQ to XML using Visual Basic 2008
  • Developing a complete form to work with LINQ to XML using Visual Basic 2008: continued
  • How to use XPath expressions in LINQ to XML

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    LINQ to XML Programming Using Visual Basic.NET 2008 - Loading/Searching XML document with LINQ to XML using Visual Basic 2008


    (Page 2 of 6 )

    The starting point to learn LINQ to XML programming is to load the XML document into an object. Let us look at that:


    Const XMLDOCFILEPATH As String = "....MyData.xml"

    Dim doc As XDocument

    doc = XDocument.Load(XMLDOCFILEPATH)


    In the above code, I am creating a new XDocument object and loading XML into it. The XDocument class is completely different from the XMLDocument class. XDocument belongs to the "System.Linq" family whereas "XMLDocument" belongs to the "System.XML" family. Make sure that you import "System.Linq" before you work on "LINQ to XML" related classes.

    Once the XML is loaded into the "XDocument" object, we can mold it to any kind of strongly typed object collection, simply by using "LINQ to XML Queries." For instance, the following would parse through all of the XML and give out a "List" based strongly typed collection with exactly the structure we need (Employee Information in this case):


    Dim qList = From xe In doc.Descendants.Elements("Employee") _

    Select New With { _

    .ID = xe.Attribute("ID").Value, _

    .Empno = xe.Element("Empno").Value, _

    .Ename = xe.Element("Ename").Value, _

    .Sal = xe.Element("Sal").Value, _

    .Deptno = xe.Element("Deptno").Value _

    }

    Me.DataGridView1.DataSource = qList.ToList


    If you observe the above code snippet, it is pretty similar to SQL querying. However, the above queries an XML Document!

    Let us consider finding information on a single employee based on the employee number provided. The following is the code:


    Dim qEmp = (From xe In doc.Descendants.Elements("Employee") _

    Where xe.<Empno>.Value = "1010" _

    Select New With { _

    .ID = xe.@ID, _

    .Empno = xe.<Empno>.Value, _

    .Ename = xe.<Ename>.Value, _

    .Sal = xe.<Sal>.Value, _

    .Deptno = xe.<Deptno>.Value _

    }).FirstOrDefault


    In the above code, I wrote a different kind of query which directly uses the XML kind of syntax in Visual Basic itself. This is another great possibility in Visual Basic 2008. You can also observe that I injected a "Where" clause in the "From" statement.

    Once the employee is found, we can retrieve information on its child elements as follows:


    a = qEmp.SelectSingleNode("Ename").InnerText

    b = qEmp.SelectSingleNode("Sal").InnerText

    c = qEmp.SelectSingleNode("Deptno").InnerText

    d = qEmp.GetAttribute("ID")


    More Visual Basic.NET Articles
    More By Jagadish Chaterjee


       · Hai,This article walks you through manipulating XML documents using LINQ. It...
       · I have test this application it work very good, I have try to add more form that...
       · Thank you for this great introduction to LINQ with VB!
     

    VISUAL BASIC.NET ARTICLES

    - User-defined Functions using Visual Basic Ap...
    - Understanding Object Binding in VBA
    - Mastering the Message Box
    - Testing a Windows Forms Application
    - Using Visual Basic.NET Features to Code a Wi...
    - Correcting Code in a Windows Forms Applicati...
    - Write Readable Code and Comments for Windows...
    - How to Code and Test a Windows Forms Applica...
    - Adding Features to a Windows Forms Applicati...
    - How to Design a Windows Forms Application
    - LINQ to XML Programming Using Visual Basic.N...
    - Understanding Delegates using Visual Basic.N...
    - Create a Sudoku Puzzle Generator using VB.NET
    - Entity Creation and Messaging in a VB.NET Te...
    - Movement and Player Statistics in a VB.NET T...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    Stay green...Green IT