亚音速 3 活动记录寻呼

发布于 2024-11-10 16:14:19 字数 266 浏览 1 评论 0原文

我正在尝试获取 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 技术交流群。

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

发布评论

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

评论(1

烧了回忆取暖 2024-11-17 16:14:19

我为我的问题想出了这个 LINQ 解决方案:(

页面是一个整数参数)

var blogcoll = blog.All().OrderByDescending(x => x.idBlog).Skip((page - 1) * 10).Take(10).ToList<blog>();

I came up with this LINQ solution for my problem:

(page is an integer parameter)

var blogcoll = blog.All().OrderByDescending(x => x.idBlog).Skip((page - 1) * 10).Take(10).ToList<blog>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文