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?