我正在使用以下XML:
<?xml version="1.0" encoding="windows-1252"?>
<hexML>
<head>
<title><![CDATA[ ]]></title>
<description><![CDATA Releases XML]]></description>
<flastmod date="2014-09-24T16:34:23 CET"/>
</head>
<body>
<press_releases>
<press_release id="1796256" joint_id="383320" language="fr" type="5">
<published date="2014-06-19T11:55:09 CET"/>
<categories>
<category id="75" label="French" keywords="language"/>
</categories>
<headline><![CDATA[Test Release for Website 3]]></headline>
<ingress></ingress>
<location href="http://rthrthrthrtrt.com/test.xml"/>
</press_release>
</press_releases>
</body>
</hexML>
我正试图通过这段代码获取数据:
cp[cpt, 0] = (from c in xdoc.Descendants("press_release")
where (int)c.Attribute("id") == r
select c.Element("headline").Value).Single();
cp[cpt, 1] = (from c in xdoc.Descendants("press_release")
where (int)c.Attribute("id") == r
select (c.Element("published").Attribute("date").Value)).ToString();
cp[cpt, 3] = (from c in xdoc.Descendants("press_release")
where (int)c.Attribute("id") == r
select c.Element("location").Attribute("href").Value).ToString();
第一条指令正确返回:网站3的测试版本。 另一方面,另外两个返回“System.linq.Enumerable + WhereSelectEnumerableIterator'2 [system.XML.Linq.Xelement,System.String]”而不是。
感谢您的帮助
注意:我正在使用.NET V3.5
答案 0 :(得分:8)
是的,因为您直接在查询第二个和第三个值时调用ToString()
- 而在第一个操作中,您是&#39;重新调用Single()
将返回单个字符串值。
基本上,不要在查询时调用ToString()
。如果您想要单个值,请使用Single()
,First()
等。如果您想要多个值,请迭代它们并依次对它们执行所需操作 - 或者以适当的方式将它们连接在一起
请注意,这与LINQ to XML无关 - 它正是LINQ to Objects所做的:
using System;
using System.Linq;
class Test
{
static void Main()
{
string[] values = { "a", "b", "c" };
var query = values.Where(x => true);
Console.WriteLine(query);
Console.WriteLine(string.Join(";", query));
}
}
输出:
System.Linq.Enumerable+WhereArrayIterator`1[System.String]
a;b;c