我正在寻找一个linq to Xdoc查询,以便按XML节点的子集进行分组。我只能使这个工作返回数据的子集但我需要传回的整个xml文档只有特定的节点分组。
<Root>
<Elementname1>
</Elementname1>
<Elementname2>
</Elementname2>
<Elementname3 attrname="test1">
<Child>
</Child>
</Elementname3>
<Elementname3 attrname="test1">
<Child>
</Child>
</Elementname3>
</Root>
此代码:
var result =
from row in xDoc.Descendants("Elementname3")
group row by (string)row.Attribute("attrname") into g
select g.First();
返回:
<Elementname3 attrname="test1">
<Child></Child>
</Elementname3>
期待:
<Root>
<Elementname1>
</Elementname1>
<Elementname2>
</Elementname2>
<Elementname3 attrname="test1">
<Child>
</Child>
</Elementname3>
</Root>
我理解,因为descendant元素从elementname3开始;只是不确定如何解释linq查询以按预期开始使用根节点和组。
答案 0 :(得分:6)
试试这个:
var result = new XDocument(
new XElement("Root",
from x in doc.Root.Elements()
group x by new { x.Name, Attr = (string)x.Attribute("attrname") } into g
select g.First()
)
);