NHibernate's QueryOver语法可以选择SqlFunction的MAX()吗?

本文关键字:MAX SqlFunction 选择 QueryOver 语法 NHibernate | 更新日期: 2023-09-27 18:03:48

我已经在我的方言子类中注册了一个SQL函数

RegisterFunction("addseconds", new SQLFunctionTemplate(NHibernateUtil.Date, "dateadd(second, ?1, ?2)"));

可以在如下查询中使用

var q = _session.QueryOver<Event>()
    .Select(
        Projections.SqlFunction(
            "addseconds",
            NHibernateUtil.Date,
            Projections.Property<Event>(x => x.DurationInSeconds),
            Projections.Property<Event>(x => x.StartTime)));

生成SQL

SELECT dateadd(second,
               this_.DurationInSeconds,
               this_.StartTime) as y0_
FROM   [Event] this_

但是我真正想要的是

SELECT MAX(dateadd(second,
               this_.DurationInSeconds,
               this_.StartTime)) as y0_
FROM   [Event] this_

不幸的是,我似乎不能得到SelectMax采取一个投影。sqlfunction。这能做到吗?

NHibernate's QueryOver语法可以选择SqlFunction的MAX()吗?

您需要将NHUtil更新为DateTime:

RegisterFunction("addseconds", new SQLFunctionTemplate(NHibernateUtil.DateTime, "dateadd(second, ?1, ?2)"));

否则,您将只处理日期部分。

您的查询很好,您只需要将其包装在projects . max()中,如下所示:

var q = _session.QueryOver<Event>()
                .Select(Projections.Max(Projections.SqlFunction(
                        "addseconds",
                        NHibernateUtil.DateTime,
                        Projections.Property<Event>(y => y.DurationInSeconds),
                        Projections.Property<Event>(y => y.StartTime))))
                .SingleOrDefault<DateTime>();
我只是快速地写了一个测试,(不同于上面的命名),它产生了查询:
SELECT max(dateadd(second,
                   this_.DurationInSeconds,
                   this_.SomeDate)) as y0_
FROM   Employee this_