我有这两个类:
class Father{
static hasMany= [children:Child]
}
class Child{
String name
}
并且在我的控制器中,我需要查找是否有father
具有特定child
,但这不起作用,请求一组子项:
Father.countByChildren(Child.get(1))
有什么建议吗?
由于
答案 0 :(得分:2)
您可以使用条件:
Father.createCriteria().count {
children {
idEq(1L)
}
}