微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linq-to-xml – 使用linq到xml选择具有给定属性的元素

我有以下 XML结构:

<artists>
    <artist> 
        <name></name> 
        <image size="small"></image> 
        <image size="big"></image> 
    </artist>
</artists>

我需要选择具有给定属性名称和图像(size = big).

var q = from c in Feed.Descendants("artist")
        select new { name = c.Element("name").Value,imgurl = c.Element("image").Value };

如何在上面的查询中指定所需的图像属性(size = big)?

解决方法

当你知道怎么做时,这很简单!

var artistsAndImage = from a in Feed.Descendants("artist")
                      from img in a.Elements("image")
                      where img.Attribute("size").Value == "big"
                      select new { Name = a.Element("Name").Value,Image = img.Value};

这将返回所有艺术家的所有名称和大图像.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。