Display the employee names and their new hourly rate. : 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.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » XML LINQ » QueryScreenshots 
Display the employee names and their new hourly rate.
  

Imports System
Imports System.Xml.Linq

    Public Class MainClass
        Public Shared Sub Main()
            Dim employees As XElement = XElement.Load("Employees.xml")

            Dim afterQuery = From ele In employees.<Employee> Select Name = ele.<Name>.Value, Wage = CDbl(ele.<HourlyRate>.Value)


            For Each ele In afterQuery
                Console.WriteLine("{0} gets paid ${1} an hour.", ele.Name, ele.Wage.ToString("##.##"))
            Next

        End Sub
    End Class

   
    
  
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.Execute the query and loop through the results, displaying the Information to the screen.
14.Creating new Xml element in the query
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.