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};

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

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念