在 c# 中使用 LINQ 解析 XML

本文关键字:LINQ 解析 XML | 更新日期: 2023-09-27 17:55:08

在此 xml 文件 (http://www.studiovincent.net/list.xml):

<list version="1.0">
  <meta>
    <type>resource-list</type>
  </meta>
  <resources start="0" count="4">
    <resource classname="Quote">
      <field name="name">Vincent</field>
      <field name="username">Hill</field>
      <field name="age">31</field>
      <field name="hair">black</field>
    </resource>
    <resource classname="Quote">
      <field name="name">John</field>
      <field name="username">Tedelon</field>
      <field name="age">27</field>
      <field name="hair">brown</field>
    </resource>
    <resource classname="Quote">
      <field name="name">Michael</field>
      <field name="username">Lopez</field>
      <field name="age">20</field>
      <field name="hair">red</field>
    </resource>
    <resource classname="Quote">
      <field name="name">Frank</field>
      <field name="username">Lopez</field>
      <field name="age">25</field>
      <field name="hair">black</field>
    </resource>
  </resources>
</list>

使用此代码:

using System.Xml;
using.System.Xml.Linq;
XmlReader reader = XmlReader.Create("http://www.studiovincent.net/list.xml");
XElement el = XElement.Load(reader);
reader.Close();
var items = el.Elements("resources").Elements("resource").Descendants().DescendantNodes();
var items = from item in el.Elements("resources").Elements("resource").Descendants() 
            where item.Attribute("name").Value == "name" select item.FirstNode;
foreach (XNode node in items)
{
    Console.WriteLine(node.ToString());
}

我有这个输出:

Vincent
John
Michael
Frank

代码运行非常好,但我需要获取值 31,它对应于字段名称="年龄",其中字段名称="名称"是文森特。我怎样才能得到这个结果?

在 c# 中使用 LINQ 解析 XML

我建议你像自然阅读XML时一样做。

在代码中,尝试查找 name 属性设置为 "name" 的所有字段。

此过程不能用于将姓名与年龄相关联。读取 XML 并检查所有resource元素更自然。然后向此元素添加field元素中描述的一些信息。

// Using LINQ to SQL
XDocument document = XDocument.Load("http://www.studiovincent.net/list.xml");  // Loads the XML document.
XElement resourcesElement = document.Root.Element("resources");  // Gets the "resources" element that is in the root "list" of the document.
XElement resourceElementVincent = (from resourceElement in resourcesElement.Elements("resource")// Gets all the "resource" elements in the "resources" element
                                    let fieldNameElement = resourceElement.Elements("field").Single(fieldElement => fieldElement.Attribute("name").Value == "name")  // Gets the field that contains the name (there one and only one "name" field in the "resource" element -> use of Single())
                                    where fieldNameElement.Value == "Vincent"  // To get only resources called "Vincent"
                                    select resourceElement).Single();  // We suppose there is one and only 1 resource called "Vincent" -> Use of Single()
XElement fieldAgeElement = resourceElementVincent.Elements("field").Single(fieldElement => fieldElement.Attribute("name").Value == "age");  // Gets the corresponding "age" field
int age = int.Parse(fieldAgeElement.Value, CultureInfo.InvariantCulture);  // Gets the age by Parse it as an integer
Console.WriteLine(age);

它能做你想做的事吗?

请考虑下面的XML作为SQL表的列之一。

<Root>
  <Name>Dinesh</Name>
  <Id>2</Id>
</Root>

查询的目的是从 XML 中获取名称。在这个例子中,我们将获取'Dinesh'作为值。

var Query = (from t in dbContext.Employee.AsEnumerable()
where t.active == true 
select new Employee
{
    Id = t.AtpEventId,  
    Name = XDocument.Parse(t.Content).Descendants("Root").Descendants("Name").ToList().  
    Select(node => node.Value.ToString()).FirstOrDefault()  
});

请注意以下几点:

  1. t.active == true只是一个例子,如果需要,可以提出一些条件。

  2. 请注意,在上面的 LINQ 查询中,始终使用 AsEnumerable,就像我在第一行所做的那样。

  3. Descendants("Root").Descendants("Name") - 这里的"根"应该是与XML匹配的元素,在根下我们有Name元素。