使用 linq to xml 选择具有给定属性的元素
我有以下 XML 结构:
<artists>
<artist>
<name></name>
<image size="small"></image>
<image size="big"></image>
</artist>
</artists>
我需要选择具有给定属性(大小 = 大)的名称和图像。
var q = from c in feed.Descendants("artist")
select new { name = c.Element("name").Value,
imgUrl = c.Element("image").Value };
如何在上面的查询中指定所需的图像属性(size=big)?
I've got following XML structure:
<artists>
<artist>
<name></name>
<image size="small"></image>
<image size="big"></image>
</artist>
</artists>
I need to select name and image with given attribute (size = big).
var q = from c in feed.Descendants("artist")
select new { name = c.Element("name").Value,
imgUrl = c.Element("image").Value };
how can I specify needed image attribute(size=big) in query above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您知道如何时,这非常简单!
这将返回所有艺术家的所有姓名和大图像。
It's quite simple when you know how!
This will return all the names and big images for all the artists.
我认为将两个具有相同名称的节点包含在同一节点集中并不是一个好主意。
它可能会有效,但我认为拥有两个不同的节点会(更好?)更简单,如下所示:
...
...
我能想到的最好的方法是使用 xsl 修改 xml,或者...
编辑 - 危险!丑陋的黑客 - 危险!
您可以使用循环修改节点名称。我敢打赌有一种更更优雅的方法可以使用 Linq-to-xml 来做到这一点 - 但我无法完全管理它:
I don't think it is a good idea to have two nodes with the same name, contained within the same nodeset.
It might validate, but I think it would be (better?) simpler to have two distinct nodes like so:
...
<smallImage></smallImage>
<largeImage></largeImage>
...
The best I can think of is to modify the xml using xsl, or...
EDIT - DANGER! UGLY HACK - DANGER!
You could modify the node names using a loop. I bet there is a much more elegant way to do this using Linq-to-xml - but I couldn't quite manage it: