School
和Student
之间的关联是单向的。如何使用JPA条件或Querydsl创建Student
加入School
的查询?
class School{
@OneToMany
private List<Student> students;
}
class Student{
private String name
}
答案 0 :(得分:0)
你不能直接从学生加入学校,但要做这样的事情
query.from(school, student).where(student.in(school.students))