我有这样的方法
static getList (long colorid) {
ColorShades.findAll 'from ColorShades where color.id = :colorid', [colorid: colorid]
}
我正在使用它:
def shadeIdsForAColor = ColorShades.getList(colorid as long)
问题
该方法返回ArrayList
个ColorShade
个对象,每个对象都有shadeId
个对象。
如何将这些id作为整数列表放入shadeIdsForAColor
变量?
答案 0 :(得分:0)
这不是吗?
def shadeIdsForAColor = ColorShades.getList(colorid as long).shadeId