简体   繁体   中英

Parse XML data with Multiple List & Class objects using LINQ-To-XML in C#

Let's say I want to parse following XML file:

 <EmployeeDetails>
     <Employee>        //List of Employees
      <Id>11</Id>
      <name>a</name>
      <Dependents>    //List of Dependents of a single employee
        <Dependent>
          <name>a1</name>
          <age>50</age>      
        </Dependent>
        <Dependent>
          <name>a2</name>
          <age>52</age>      
        </Dependent>
      </Dependents>
      <Department>           //Unique per Emp
        <DeptId>1</DeptId>
        <DeptName>D1</DeptName>   
      </Department>
    </Employee>
    <Employee>
     -----
    --------
    </Employee>
   </EmployeeDetails>

Following is the Class Structure for above file:

public class Employee
{
  public int id {get; set;}
  public string name {get; set;}
  public List<Dependents> Dependents {get; set;}
  public Department Department {get; set;}
}

public class Dependents
{
  public string name {get; set;}
  public int age {get; set;}
}

public class Department
{
  public int DeptId {get; set;}
  public string DeptName {get; set;}
}

Now, I want to parse above XML structure and I am able to do it for id and name of Employee but I am unable to parse further.

Let me show you what I've done so far :

public static void ParseXml() 
{
  string xmldoc = //let's assume I've data in this string

            XDocument xdoc = new XDocument();
            xdoc = XDocument.Parse(xmldoc);

            var query = from d in xdoc.Root.Descendants("Employee")
                        select d;

            List<Employee> lsEmp = new List<Employee>();

            foreach (var q in query)
            {
                Employee obj = new Employee();
                obj.Id = Convert.ToInt32(q.Element("Id").Value);
                obj.name = q.Element("name").Value;


                obj.Department = new Department();
                obj.Dependents = new List<Dependents>();

                 // how to get data further?



               lsEmp.Add(obj);
           }

So I need help in order to parse XML data from these list of Dependents and Department object.

Following your own structure, here's the way to continue parsing the data you need.

// how to get data further?
var allDependents = q.Elements("Dependents").Elements("Dependent");

foreach (var b in allDependents)
{
    Dependents d = new Dependents
    {
        age = Convert.ToInt32(b.Element("age").Value),
        name = b.Element("name").Value
    };
    obj.Dependents.Add(d);
}

obj.Department.DeptId = Convert.ToInt32(q.Element("Department").Element("DeptId").Value);
obj.Department.DeptName = q.Element("Department").Element("DeptName").Value;

Notice that I have used .Elements("") to get all the child nodes under Dependents

Maybe this can help you:

XDocument xdoc = new XDocument();
        xdoc = XDocument.Parse(xmldoc);

        var query = from d in xdoc.Root.Descendants("Employee")
                    select d;

        List<Employee> lsEmp = new List<Employee>();

        foreach (var q in query)
        {
            Employee obj = new Employee();
            obj.Id = Convert.ToInt32(q.Element("Id").Value);
            obj.name = q.Element("name").Value;


            obj.Department = new Department()
            {
                DeptName = q.Element("Department").Element("name").Value,
                DeptId = 
               Convert.ToInt32(q.Element("Department").Element("age").Value)
            };
            obj.Dependents = new List<Dependents>();


            foreach (var e in q.Element("Dependents").Elements("Dependent"))
            {
                var dependent = new Dependents()
                {
                    name = e.Element("name").Value,
                    age = Convert.ToInt32(e.Element("age").Value)
                };
                obj.Dependents.Add(dependent);
            }

            lsEmp.Add(obj);
        }

Here is code using just linq and no for loops

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            string xml = File.ReadAllText(FILENAME);
            ParseXml(xml);

        }
        public static void ParseXml(string xml)
        {

            XDocument xdoc = XDocument.Parse(xml);

            List<Employee> employees = xdoc.Descendants("Employee").Select(x => new Employee () {
                id = (int)x.Element("Id"),
                name = (string)x.Element("Name"),
                Department = x.Elements("Department").Select(y => new Department() { DeptId = (int)y.Element("DeptId"), DeptName = (string)y.Element("DeptName")}).FirstOrDefault(),
                Dependents = x.Descendants("Dependent").Select(y => new Dependents() { age = (int)y.Element("age"),  name = (string)y.Element("name")}).ToList()
            }).ToList();
        }


    }
    public class Employee
    {
        public int id { get; set; }
        public string name { get; set; }
        public List<Dependents> Dependents { get; set; }
        public Department Department { get; set; }
    }

    public class Dependents
    {
        public string name { get; set; }
        public int age { get; set; }
    }

    public class Department
    {
        public int DeptId { get; set; }
        public string DeptName { get; set; }
    }

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM