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

前端之家收集整理的这篇文章主要介绍了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};

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

猜你在找的XML相关文章