我正在我的休眠中为数字字段的总和创建条件查询中的 group by 子句。我需要另一列 -seriesType
来自输出结果列表中的域类,但现在如果我property('seriesType')
在预测中添加该术语以及 grouProperty() 行,我会得到一个异常说not a group by clause could not execute query
不确定如何在结果中获得该字段以及其他两个字段这是我的标准
dataMap = BehaviorProfile.createCriteria().list {
globalUser{
eq('id',empid2)
}
projections{
sum('frequency', 'tfreq')
groupProperty('dayofweek')
// if I add property('seriesType') here the criteria throws an exception
}
}