亚音速 3 活动记录寻呼
我正在尝试获取 Subsonic 3.0 Active Records 中最新的 10 行。
我想要分页,所以我真的可以使用这样的方法:
var blogcoll = blog.GetPaged(1, 10);
GetPaged()
方法的问题是你不能按降序分页。
我想要最后 10 个 ID,而不是前 10 个 ID,
我是否遗漏了什么?
还有别的办法吗?
I am trying to get the 10 latest rows in Subsonic 3.0 Active Records.
I want to page, so I could really use a method like this:
var blogcoll = blog.GetPaged(1, 10);
The problem with the GetPaged()
method is that you can't page in a descending order.
Instead of the first 10 id's i want the last 10 id's
Am I missing something?
is there another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为我的问题想出了这个 LINQ 解决方案:(
页面是一个整数参数)
I came up with this LINQ solution for my problem:
(page is an integer parameter)