Model.findAll() is a shortcut that immediately retrieves the results, which is equivalent to Model.all().fetch() .
I think the best way to specify the order is to use a JPQL query like this:
Model.find("order by fieldName desc").fetch();
mike
source share