如何在 NHibernate 中选择最大值?
我需要从数据库获取最大页顺序:
int maxOrder = GetSession.Query<Page>().Max(x => x.PageOrder);
如果数据库表中有行,则上述方法有效,但当表为空时,我得到:
Value cannot be null.
Parameter name: item
I need to get maximum page order from database:
int maxOrder = GetSession.Query<Page>().Max(x => x.PageOrder);
The above works if there are rows in the database table, but when table is empty I'm getting:
Value cannot be null.
Parameter name: item
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
按照您的方式,获得异常是正常的,因为
GetSession.Query()
返回的可枚举为空(因为正如您提到的,表是空的)。您应该得到的例外是:序列不包含元素。
您在问题中提到的例外是因为 item 变量(与上面列出的 Niberanate 查询无关)为 null(第 54 行将 item 属性分配为 null)。
从表中的属性获取最大值的更安全方法如下:
或将 QueryOver 与 NHibenrate 3.0 结合使用:
如果表为空,您将得到 max = 0
In the way you are doing it is normal to get an exception as the enumerable, that the
GetSession.Query<Page>()
returns, is empty (because the table is empty as you mentioned).The exception that you should be getting is: Sequence contains no elements.
The exception you mention in your question is because the item variable (which is irrelevant with the NHiberanate query you list above) is null (line 54 assigns the item property to null).
A safer way to get the max from a property in a table would be the following:
or using QueryOver with NHibenrate 3.0:
If the table is empty you will get max = 0
注意强制转换(我假设 PageOrder 是一个 int)
Note the cast (I'm assuming PageOrder is an int)
如果您在使用 tolism7 的 QueryOver 示例 (InvalidCastException) 时遇到问题,以下是我的工作方法:
If you are having problems with the QueryOver example by tolism7 (InvalidCastException), here's how I got it working: