Creating new Xml element in the query : Query « XML LINQ « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » XML LINQ » QueryScreenshots 
Creating new Xml element in the query
  
Imports System
Imports System.Reflection
Imports System.Xml

Module Module1

    Sub Main()
        Dim xml As XElement = XElement.Load("People.xml")

        Dim query = From p In xml.Descendants("person"), s In xml.Descendants("id"_
            Where p.Element("id").Value = s.Attribute("id").Value _
            Select New With {.FirstName = p.Element("firstname").Value, _
                                .LastName = p.Element("lastname").Value, _
                                .Amount = s.Attribute("salar").Value}

        For Each record In query
            Console.WriteLine("Person: {0} {1}, Salary {2}", record.FirstName, _
                                                            record.LastName, _
                                                            record.Amount)
        Next


    End Sub
End Module

   
    
  
Related examples in the same category
1.Build a query to join the two XML trees on the employee's Id.
2.Build an element with a query
3.Loop through all the Employee nodes and insert the new 'TerminationDate' node and the 'Status' attribute
4.Loop through all the HourlyRate elements, setting them to the new payrate, which is the old rate * 5%.
5.Loop through all of the Employee elements and remove the HireDate element.
6.Loop through a node in Xml document
7.Query Xml document by Node value
8.Query for all of the employees that make (HourlyRate) more than $100 an hour
9.Query the XML Tree and get the Name and Hourly Rate elements.
10.Use LINQ to get the tasks for each employee and order them by the employee's name.
11.Using For Each to loop through the result of Xml query
12.Display the employee names and their hourly rate
13.Display the employee names and their new hourly rate.
14.Execute the query and loop through the results, displaying the Information to the screen.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.