I have a need to modify Queries on the fly. In particular I want to change ASC or DESC order based. To do this given a Query I need to call query.getOrderBy() and add/replace the asc/desc in the query.
DefaultOrmQuery has this method but its not exposed through Query interface.
I would also like to see OrderBy be decomposed, into either an Order object, or:
List orderByColumns
String orderByDirection
This is the last of my requests tonight. This all stems from me trying to replace an existing Hibernate installation with EBean.