如何在 LINQ to XML 语句中返回同级 XElement?
根据以下 XML 输入:
<root>
<node name="one" value="1"/>
<node name="two" value="2"/>
<node name="three" value="3"/>
<node name="four" value="4"/>
</root>";
我需要使用 LINQ to XML 生成以下内容:
<root>
<name content="one"/>
<value content="1"/>
<name content="two"/>
<value content="2"/>
<name content="three"/>
<value content="3"/>
<name content="four"/>
<value content="4"/>
</root>
此代码生成 name 元素,但不生成 value 元素。
var input = @"
<root>
<node name=""one"" value=""1""/>
<node name=""two"" value=""2""/>
<node name=""three"" value=""3""/>
<node name=""four"" value=""4""/>
</root>";
var xml = XElement.Parse(input);
var query = new XElement("root",
from p in xml.Elements("node")
select new XElement("name",
new XAttribute("content", p.Attribute("name").Value) /*,
new XElement("value", new XAttribute("content", p.Attribute("value").Value)) */
)
);
如果我在最后一个括号内包含 value XElement(上面已注释掉),则它是 name 元素的子元素,但在右括号之外,它不再有权访问q(位于查询之外)。
感觉就像我需要将两个 XElement 连接在一起或以某种方式将它们包含在另一个不生成任何 XML 的集合中。
From the following XML input:
<root>
<node name="one" value="1"/>
<node name="two" value="2"/>
<node name="three" value="3"/>
<node name="four" value="4"/>
</root>";
I need to use LINQ to XML to produce the following:
<root>
<name content="one"/>
<value content="1"/>
<name content="two"/>
<value content="2"/>
<name content="three"/>
<value content="3"/>
<name content="four"/>
<value content="4"/>
</root>
This code produces the name elements, but not the value elements.
var input = @"
<root>
<node name=""one"" value=""1""/>
<node name=""two"" value=""2""/>
<node name=""three"" value=""3""/>
<node name=""four"" value=""4""/>
</root>";
var xml = XElement.Parse(input);
var query = new XElement("root",
from p in xml.Elements("node")
select new XElement("name",
new XAttribute("content", p.Attribute("name").Value) /*,
new XElement("value", new XAttribute("content", p.Attribute("value").Value)) */
)
);
If I include the value XElement (commented out above) inside the last parenthesis then it is a child of the name element, but outside the closing parenthesis it no longer has access to q (it is outside the query).
It feels like I need to concatenate two XElements together or somehow include them in another collection that doesn't produce any XML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Enumerable.SelectMany 展平属性
方法。在查询格式中,这相当于两个from
子句:相比之下,使用实际的
SelectMany
方法并流畅地编写它看起来像这样:但是,我倾向于发现大多数
SelectMany
中的查询语法更加清晰用法和我倾向于坚持一种或另一种格式,尽管混合两种格式也很好。You could flatten the attributes using the
Enumerable.SelectMany
method. In query format this is equivalent to twofrom
clauses:To contrast, using the actual
SelectMany
method and writing it fluently would look like this:However, I tend to find the query syntax to be clearer in most of
SelectMany
usages and I tend to stick to one format or another, although it's perfectly fine to mix both.使用您的代码作为起点。将这对包装在一个 item 元素中,然后用它的子元素替换它。
Using your code as starting point. Wrap the pair in an item element and then replace it with its children.