Grails:如何在多对多的映射中查询对象?

前端之家收集整理的这篇文章主要介绍了Grails:如何在多对多的映射中查询对象?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好我有以下的域类.
class Student {
   int age
   static hasMany = [courses:Course]
}

class Course {
   String name
   static hasMany = [students:Student]
}

我想找到7岁的学生参加课程(id 1).

我可以使用动态查找器或标准构建器或HQL来执行此操作吗?

我不想做以下工作,因为它加载所有的学生如此低效:

def course = Course.get(1);
course.students.findAll{ it.age == 7 }

解决方法

def studs = Student.withCriteria {
  eq('age',7)
  courses {
    eq('id',1)
  }
}

GORM doc,“查询协会”部分.

原文链接:https://www.f2er.com/html/224469.html

猜你在找的HTML相关文章