gpt4 book ai didi

grails - 我在createCriteria中遇到投影问题

转载 作者:行者123 更新时间:2023-12-02 14:14:31 25 4
gpt4 key购买 nike

我面临从此关闭中获得所需结果的问题

def authors{
results = Message.createCriteria().list {
projections {
author{
groupProperty('id', 'authorId') // 2nd param is alias
property('username', 'username')
}
}

and{
...
...
}
}

[authors:results]
}

我想在我的gsp页面上显示此列表
并希望使用别名访问值
(当上述条件返回数组列表时)

最佳答案

使用resultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP)。

import org.hibernate.criterion.CriteriaSpecification
Message.createCriteria().list {
resultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP)
projections {
author{
groupProperty('id', 'authorId')
property('username', 'username')
}
}
}

所有投影都必须具有别名。否则,结果映射将包含空值。

关于grails - 我在createCriteria中遇到投影问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7088139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com