加入单向关联

时间:2015-02-27 10:07:16

标签: java jpa querydsl

SchoolStudent之间的关联是单向的。如何使用JPA条件或Querydsl创建Student加入School的查询?

class School{
    @OneToMany
    private List<Student> students;
}
class Student{
    private String name
}

1 个答案:

答案 0 :(得分:0)

你不能直接从学生加入学校,但要做这样的事情

query.from(school, student).where(student.in(school.students))