在模型中找到具有多种关系的类

时间:2014-11-13 14:32:30

标签: grails convention-over-configur

我有以下型号:

TestProfessional { 
    static hasMany = [answers: Answer]
}
Answer { 
String answer;
}

如何找到具有指定ID的答案的TestProfessional?

1 个答案:

答案 0 :(得分:0)

有效:

def questions = TestProfessional.withCriteria(uniqueResult: false) {
            answers {
            inList("id", answersIds)
        }}