I have the following classes mapped:
class Student {
...
@OneToMany(mappedBy = "student")
private List<Grades> grades;
}
class Grade {
...
@ManyToOne
Student student;
int value;
}
What I'm trying to do is to query the top Students, by averaging their grades. Something that in a HQL would be:
SELECT student FROM Student as student
INNER JOIN student.grades as grades
GROUP BY student.id
ORDER BY avg(grades.value) DESC
If you needed to create a Criteria to make this query, how would you do it? Thank you very much.