我收到以下错误:
Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement>>' to 'System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement>'. An explicit conversion exists (are you missing a cast?)
我不明白为什么。在这里,我有我的代码,我尝试获取DataContainer
元素Name
属性与name.key
相同的元素:
XDocument xml = XDocument.Load(name.Value);
IEnumerable<XElement> columns = from d in xml.Descendants("DataContainer")
where (d.Attribute("Name").Value.Equals(name.Key))
select d.Descendants("ArrayOfColumn");
在这里你有我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<DataContainers>
<DataContainer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Name="IRS vs E3M" Currency="EUR">
<ArrayOfColumn Name="Maturite" isData="false">
<Line Value="1Y" />
<Line Value="2Y" />
<Line Value="3Y" />
<Line Value="4Y" />
<Line Value="5Y" />
<Line Value="6Y" />
<Line Value="7Y" />
<Line Value="8Y" />
<Line Value="9Y" />
<Line Value="10Y" />
<Line Value="15Y" />
<Line Value="20Y" />
<Line Value="30Y" />
<Line Value="40Y" />
<Line Value="50Y" />
<Line Value="60Y" />
</ArrayOfColumn>
<ArrayOfColumn Name="Value" isData="true">
<Line Value="EURAB3E1Y" />
<Line Value="EURAB3E2Y" />
<Line Value="EURAB3E3Y" />
<Line Value="EURAB3E4Y" />
<Line Value="EURAB3E5Y" />
<Line Value="EURAB3E6Y" />
<Line Value="EURAB3E7Y" />
<Line Value="EURAB3E8Y" />
<Line Value="EURAB3E9Y" />
<Line Value="EURAB3E10Y" />
<Line Value="EURAB3E15Y" />
<Line Value="EURAB3E20Y" />
<Line Value="EURAB3E30Y" />
<Line Value="EURAB3E40Y" />
<Line Value="EURAB3E50Y" />
<Line Value="EURAB6E60Y" />
</ArrayOfColumn>
</DataContainer>
</DataContainers>
有人可以帮助我解释原因吗?
答案 0 :(得分:5)
问题是你的d
是后代的集合,然后你过滤它们并从通过过滤器的任何后代中拉出更多的后代。
即使您的过滤器仅匹配一个元素,系统仍会将其视为集合。如果您知道只有一个结果,那么您可以在拉动后代之前在d上使用.Single()
方法。例如:
XDocument xml = XDocument.Load(name.Value);
IEnumerable<XElement> columns = xml.Descendants("DataContainer")
.Where(d => d.Attribute("Name").Value.Equals(name.Key))
.Single()
.Select(d => d.Descendants("ArrayOfColumn"));
我已将其更改为方法链接,因为它为此更好地流动。另请注意,where表达式可以放在单个方法中,但是更清楚地看一下。