Linq 到 RSS 提要?
我想做的是采用 RSS 感觉 URL,并使用 LINQ 编写一个查询,让我对提要的主题行进行排序,或对提要的作者行进行排序,甚至执行“WHERE”子句例如,这可以让我按关键字进行过滤。
我知道我可以读取 RSS 提要、解析每个元素、将它们放入某种类对象集合中并通过 LINQ 进行连接,但我想知道 Microsoft 是否提供了一种更简单的方法来在 .NET 框架中执行此操作。
What I'm trying to do is take an RSS feel URL and, using LINQ, be able to write a query that will let me sort the subject line of the feed or sort the author line of the feed or even do 'WHERE' clauses that will let me filter by keywords for example.
I know I can read the RSS feed, parse each element, put them into some sort of class object collection and LINQ off that, but I was wondering if Microsoft provided a simpler way to do this in the .NET framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看 SynminationFeed 类。
You should have a look a the SyndicationFeed class.
也许这就是您正在寻找的内容:
http://codebetter.com/blogs/jeffrey.palermo/archive/2007/10/13/linq-to-xml-querying-an-rss-feed.aspx
Maybe this is what you are searching for:
http://codebetter.com/blogs/jeffrey.palermo/archive/2007/10/13/linq-to-xml-querying-an-rss-feed.aspx