通过 ActiveRecord 读取 N 个后续项目
我的项目是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的 AR 类是
MyItem
并且它继承ActiveRecordBase
:Assuming your AR class is
MyItem
and it inheritsActiveRecordBase<T>
: