我试图从数据库中获取查找值,我想列出一个单列值列表,即“值”列。
private Static Final String Custom = "Custom" //lie in class Constants
LookUp.createCriteria.list() {
eq('type',LookupTypeEnum.valueOf(Constants.Custom).toString())
}
这个列表就像选择,
我怎样才能把这个查询变成
Select Value from LookUp where Type = 'Custom'
我希望我的 grails 查询返回一个像 sql 一样的查询结果。我想将它绑定到列表框?