Linq 到 RSS 提要?

发布于 2024-09-12 09:03:07 字数 204 浏览 8 评论 0原文

我想做的是采用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光清浅 2024-09-19 09:03:07

您应该查看 SynminationFeed 类。

var reader = XmlReader.Create("http://url.to/rss");
var feed = SyndicationFeed.Load(reader);

//Find items by Jesper
feed.Items.Where(i=>i.Authors.Any(p=>p.Name == "Jesper"));

//Order by publish date
var ordered = feed.Items.OrderBy(i=>i.PublishDate);

You should have a look a the SyndicationFeed class.

var reader = XmlReader.Create("http://url.to/rss");
var feed = SyndicationFeed.Load(reader);

//Find items by Jesper
feed.Items.Where(i=>i.Authors.Any(p=>p.Name == "Jesper"));

//Order by publish date
var ordered = feed.Items.OrderBy(i=>i.PublishDate);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文