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.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.