Visual Basic.NET
  Home arrow Visual Basic.NET arrow Page 3 - 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 - Adding, Updating and Deleting from an XML document using LINQ to XML


    (Page 3 of 6 )

    In previous section, we saw how to retrieve and search an XML document using "LINQ to XML." In this section we will manipulate an XML document with Add, Update and Delete operations.

    Let us consider adding a new employee to department 30. The following is the sample code:


    Dim qTargetDept As XElement = doc.Descendants.Elements("Department") _

    .Where(Function(xe) xe.<Deptno>.Value = "30") _

    .FirstOrDefault

    If qTargetDept Is Nothing Then

    MessageBox.Show("Department/EmployeeInfo not found")

    Exit Sub

    End If


    Dim oEmp As New XElement("Employee")

    oEmp.Add(New XAttribute("ID", "E20"))

    oEmp.Add(New XElement("Empno", "4001"))

    oEmp.Add(New XElement("Ename", "Winner"))

    oEmp.Add(New XElement("Sal", "4500"))

    oEmp.Add(New XElement("Deptno", "30"))


    qTargetDept.Element("EmployeeInfo").Add(oEmp)


    In the above code snippet, I am using the "XElement" class instead of the "XMLElement" class. "XElement" belongs to "System.Linq."

    Similarly, we can also modify existing records using the following code:


    Dim qEmp As XElement = doc.Descendants.Elements("Employee") _

    .Where(Function(xe) xe.<Empno>.Value = "4001") _

    .FirstOrDefault

    qEmp.<Ename>.Value = "Winner2"

    qEmp.<Sal>.Value = "5400"

    qEmp.<Deptno>.Value = "30" 'this is not necessary

    qEmp.@ID = "E40"


    In the same manner, we can use the following code to delete an existing record:


    Dim qEmp As XElement = doc.Descendants.Elements("Employee") _

    .Where(Function(xe) xe.<Empno>.Value = "4001") _

    .FirstOrDefault

    qEmp.Remove()


    Finally, we can save the XML document back to the file using the following code:


    doc.Save(XMLDOCFILEPATH)


    Make sure that "Save" is still supported in "XDocument" and it works in the same manner as "XMLDocument.Save" does.

    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 2 Hosted by Hostway
    Stay green...Green IT