Currently I have two queries to extract the neccessary information from the RSS feed, the first one retrieves the feed info and the second one gets the posts: Code Snippet var feedInfo = from channel in rss.Descendants("channel") select new { Title = channel.Element("title").Value, Link = channel.Element("link").Value }; var items = from item in rss.Descendants("item") select new { Title = item.Element("title").Value, Link = item.Element("link").Value }; Is there any way that I can use a single query
Read More...