I\'ve got following XML structure:
It's quite simple when you know how!
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};
This will return all the names and big images for all the artists.