是否可以用条件查询grails并接收映射列表而不是列表列表?我希望在结果中包含列名,以便使用"关联数组"而不是数字数组偏移。我现在做一些类似的事情
def topFiveUsers = BlogEntry.createCriteria().list {
projections {
count('id')
groupProperty('author')
}
maxResults 5
}
这导致[[123, app.User:1][111, app.User:2][...]...]
,即列表列表。我更想要[[posts:123, author: app.User:1][posts: 111, author app.User:2][...]...]
这样的东西。
一如既往:非常感谢您的帮助!
使用resultTransformer()。使用CriteriaSpecification作为参数。ALIAS_TO_ENTITY_MAP
关于这个主题的文献和例子很少。但这里有一个例子:
import org.hibernate.criterion.CriteriaSpecification
BlogEntry.withCriteria {
maxResults 5
resultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP)
projections {
count('id', 'total')
groupProperty('author', 'author')
}
}
请注意,所有投影都需要别名。否则,生成的映射由null组成。
def topFiveList = []
topFiveUsers.each { rec ->
topFiveList << [posts: rec[0], author: rec[1]]
}
def converted = topFiveUsers.collect{ [posts: it[0], author: it[1]] }