加入单向关联

Join in unidirectional association

SchoolStudent 之间的关联是单向的。如何使用 JPA 条件或 Querydsl 从 Student 创建查询并连接到 School

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

你不能直接从学生加入学校,但可以这样做

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