我有一个属于用户的图像
class Image {
static belongsTo = [user: User]
String name
String path
}
class User {
String name
}
如何在不在数据库中提取用户的情况下获取用户ID:
myService.doIt(Image.get(1).user.id)
抓取用户(我只需要这里的id)
答案 0 :(得分:4)
使用动态" fooId"域类属性的属性" foo":
myService.doIt(Image.get(1).userId)