4

在这个 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,它对应于字段名称 =“年龄”,其中字段名称 =“名称”是文森特。我怎样才能得到这个结果?

4

2 回答 2

7

我建议您像自然阅读 XML 时那样做。

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

此过程不能用于将姓名与年龄相关联。resource阅读 XML 并检查所有元素更为自然。然后向此元素添加元素中描述的一些信息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);

它做你想做的事吗?

于 2013-01-23T00:23:06.993 回答
0

考虑下面的 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")- 这里“Root”应该是与 XML 匹配的元素,在 Root 下我们有 Name 元素。

于 2020-03-11T13:24:42.747 回答