通过 ActiveRecord 读取 N 个后续项目

发布于 2024-09-19 08:18:40 字数 290 浏览 5 评论 0原文

我的项目是 C# 并在 MS SQL Server 数据库上使用 CastleProject ActiveRecord。

我需要从数据库中检索 N 个后续项目,按某些标准排序,从某个值开始。

示例:我在某个表中有很多消息,其中消息有 ID、时间和文本。我想检索位置从 100 到 120 的消息(按时间排序)。

我无法读取所有消息,然后在客户端上排序和查找,因为数据库中可能有很多消息(比如说,一百万条)。

是否可以通过ActiveRecord方式实现或者仅通过SQL Server上的存储过程来实现?

My project is C# and uses CastleProject ActiveRecord on MS SQL Server database.

I need to retrieve N consequent items from the database, sorted by some criteria, started from some value.

Example: I have a lot of messages in some table, where message has ID, time and text. I'd like to retrieve messages with position from 100 to 120, when they are sorted by time.

I cannot read all messages, and then sort and find on a client because there may be many messages in database (say it, a million of).

Is it possible to achieve with ActiveRecord means or only with stored procedures on SQL Server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

有深☉意 2024-09-26 08:18:40

假设您的 AR 类是 MyItem 并且它继承 ActiveRecordBase

MyItem[] items = MyItem.SlicedFindAll(100, 20, new[] {Order.Asc("time")});

Assuming your AR class is MyItem and it inherits ActiveRecordBase<T>:

MyItem[] items = MyItem.SlicedFindAll(100, 20, new[] {Order.Asc("time")});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文