Ebean is using the order by when you query the master and detail in a single query.
However it is not using the order by ... when lazy loading the details. So I assume that is scenario where you hit this issue. Is that the case?
Aka you are doing:
//first fetch the Comment...
Comment comment = Ebean.find(Comment.class, 1)
//then lazy load the comments
comment.getComments().size();
Is that the scenario?
Thanks, Rob.