gpt4 book ai didi

c# - Linq 2 XML 不返回基于属性值的元素

转载 作者:行者123 更新时间:2023-11-30 23:28:56 26 4
gpt4 key购买 nike

我有以下 XML...

<?xml version="1.0" encoding="utf-8"?>
<Employees>
<Employee>
<EmpId>1</EmpId>
<Name>Sam</Name>
<Sex>Male</Sex>
<Phone Type="Home">423-555-0124</Phone>
<Phone Type="Work">424-555-0545</Phone>
<Address>
<Street>7A Cox Street</Street>
<City>Acampo</City>
<State>CA</State>
<Zip>95220</Zip>
<Country>USA</Country>
</Address>
<Employee>
<EmpId>5</EmpId>
<Name>Kenneth Lowrey</Name>
<Sex>Male</Sex>
<Phone Type="Home">555-555-3477</Phone>
<Phone Type="Work">444-123-2557</Phone>
<Address>
<Street>6026 Amberwoods Drive</Street>
<City>Boca Raton</City>
<State>FL</State>
<Zip>33433</Zip>
<Country>USA</Country>
</Address>
</Employee>
</Employee>
</Employees>

我有以下控制台应用程序代码...

using System;
using System.Xml.Linq;
using System.Linq;

class Program
{
public static void Main(String[] args)
{
String strPath = @"C:\XMLExample\Employees.xml";
XElement xEle = XElement.Load(strPath);

var empquery = from e in xEle.Descendants("Employee")
select new
{
name = e.Element("Name").Value,
homephone = (string)e.Element("Phone").Attribute("Type").Value=="Home" ? e.Element("Phone").Value : "",
workphone = (string)e.Element("Phone").Attribute("Type").Value=="Work" ? e.Element("Phone").Value : "",
};

foreach (var e in empquery)
{
Console.WriteLine("{0}'s home phone is {1} work phone is {2}", e.name, e.homephone, e.workphone);
}

Console.WriteLine("Press <enter> to continue");
Console.ReadLine();
}
}

我试图在查询表达式中分隔家庭电话号码和工作电话号码。

但是我只能得到家里的电话号码..

enter image description here

我做错了什么?

最佳答案

Element() 方法仅返回与指定名称匹配的第一个元素。因此,对于每个 Employee,您只会获得第一部电话(Home)。

更好的方法是使用 Elements() 方法获取与指定名称匹配的所有元素,然后按属性 Type 值过滤:

var empquery = from e in xEle.Descendants("Employee")
select new
{
name = e.Element("Name").Value,
homephone = (string)e.Elements("Phone").Where(x => x.Attribute("Type").Value == "Home").FirstOrDefault().Value,
workphone = (string)e.Elements("Phone").Where(x => x.Attribute("Type").Value == "Work").FirstOrDefault().Value
};

关于c# - Linq 2 XML 不返回基于属性值的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35755581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com