... I'm missing the option to chain the order by statements.
Something like:
query.addOrderBy("someProp");query.addOrderBy("otherProp, OrderBy.DESCENDING);
... or more like:
Ebean.find(Person.class).order().asc("name");
... but I am missing the option to chain the order by statements, now I have to append them myself and set the long string. It would be nice to be able to chaing most properties of a query. This safes time looking up the right syntax...
I have added this to HEAD.
In addition there is now a OrderBy object which represents the order by clause.