What I'm trying to do is take the URL to read RSS and, using LINQ, be able to write a query that allows me to sort the feed subject line or sort the feed author line or even execute 'WHERE', which will allow me to filter by key words, for example.
I know that I can read the RSS feed, analyze each element, put them in some collection of class and LINQ objects, but I was wondering if Microsoft provided an easier way to do this in the .NET platform.
source
share