如何在 NHibernate 中选择最大值?

发布于 2024-10-13 08:34:17 字数 227 浏览 3 评论 0原文

我需要从数据库获取最大页顺序:

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 技术交流群。

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

发布评论

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

评论(3

变身佩奇 2024-10-20 08:34:17

按照您的方式,获得异常是正常的,因为 GetSession.Query() 返回的可枚举为空(因为正如您提到的,表是空的)。

您应该得到的例外是:序列不包含元素。
您在问题中提到的例外是因为 item 变量(与上面列出的 Niberanate 查询无关)为 null(第 54 行将 item 属性分配为 null)。

从表中的属性获取最大值的更安全方法如下:

var max = GetSession.CreateCriteria<Page>()
                .SetProjection(Projections.Max("PageOrder"))
                .UniqueResult();

或将 QueryOver 与 NHibenrate 3.0 结合使用:

var max = GetSession.QueryOver<Page>()
      .Select(
            Projections
               .ProjectionList()
               .Add(Projections.Max<Page>(x => x.PageOrder)))
      .List<int>().First();

如果表为空,您将得到 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:

var max = GetSession.CreateCriteria<Page>()
                .SetProjection(Projections.Max("PageOrder"))
                .UniqueResult();

or using QueryOver with NHibenrate 3.0:

var max = GetSession.QueryOver<Page>()
      .Select(
            Projections
               .ProjectionList()
               .Add(Projections.Max<Page>(x => x.PageOrder)))
      .List<int>().First();

If the table is empty you will get max = 0

傲鸠 2024-10-20 08:34:17
Session.Query<Page>().Max(x => (int?)x.PageOrder)

注意强制转换(我假设 PageOrder 是一个 int)

Session.Query<Page>().Max(x => (int?)x.PageOrder)

Note the cast (I'm assuming PageOrder is an int)

御弟哥哥 2024-10-20 08:34:17

如果您在使用 tolism7 的 QueryOver 示例 (InvalidCastException) 时遇到问题,以下是我的工作方法:

var max = session.QueryOver<Page>()
    .Select(Projections.Max<Page>(x => x.PageOrder))
    .SingleOrDefault<object>();

return max == null ? 0 : Convert.ToInt32(max);

If you are having problems with the QueryOver example by tolism7 (InvalidCastException), here's how I got it working:

var max = session.QueryOver<Page>()
    .Select(Projections.Max<Page>(x => x.PageOrder))
    .SingleOrDefault<object>();

return max == null ? 0 : Convert.ToInt32(max);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文