0

我正在尝试使用 QueryOver 实现以下 SQL 查询:

SELECT [Time]/1000
FROM TableName
GROUP BY [Time]/1000

这是我目前的尝试:

var result = session
    .QueryOver<TableName>
    .Select(Projections.GroupProperty(
        Projections.SqlFunction(
            new VarArgsSQLFunction("(", "/", ")"),
            NHibernateUtil.Int64,
            Projections.Property("Time")
            Projections.Constant(1000))
    ))
    .List<object>();

不幸的是,我得到以下异常(GenericADOException):

could execute query
[ SELECT (this_.Time/@p0) as y0_ FROM [TableName] this_ GROUP BY (this_.Time/?) ]

内部异常:

Incorrect syntax near ?.

我可以用“Sum”替换“GroupProperty”并且它可以工作。知道缺少什么吗?


更新:显然这是 NHibernate 中的一个错误。另请参阅此问题

4

1 回答 1

1

为什么不直接使用 Projections.SqlGroupProjection:

var result = session
    .QueryOver<TableName>
    .Select(Projections.SqlGroupProjection(
                        Time/1000 AS TimeValue", 
                        "Time/1000", 
                        new[]{"TimeValue"}, 
                        new[]{NHibernateUtil.Int32}))
    .List<object>();
于 2012-10-17T08:42:26.643 回答