As per post http://stackoverflow.com/questions/3885795/select-element-with-given-attribute-using-linq-to-xml what will be the equivalent lambda expression.
The below solution works fine
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};
I tried the lambda expression but it's not working :-( can somebody suggest the equivalent lambda expression.