有谁知道为什么 Take() 在这里不起作用
我有以下使用 Nhibernate.Linq 的代码,
var apps = Session.Linq<History>().OrderByDescending(r => r.LastUpdated).Take(50);
Console.Write(apps.Count());
计数返回 1000(不是我期望的 50)
任何想法为什么 .Take() 不起作用?
i have the following code using Nhibernate.Linq
var apps = Session.Linq<History>().OrderByDescending(r => r.LastUpdated).Take(50);
Console.Write(apps.Count());
the count returns 1000 (NOT 50 which is what i would have expected)
any ideas why the .Take() is not working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它看起来像是 Linq 提供程序中的一个错误(您正在使用旧的提供程序,我也尝试了新的提供程序,但它仍然不起作用)。
您应该在 http://jira.nhforge.org/ 中提出问题
作为解决方法,请使用
.ToList()
在应用程序的分配中。It looks like a bug in the Linq provider (you are using the old one, I tried the new one too and it still doesn't work).
You should open an issue in http://jira.nhforge.org/
As a workaround, use
.ToList()
in the assignment to apps.