SELECT entity FROM ENTITY AS entity ORDER BY entity
which creates SQL like:
SELECT .... FROM entity t0 ORDER BY t0.AE_ID"
We know that JPA specification says that ORDER BY item must be a state_field_path_expression. Is in EclipseLink any posibility how to do the same (some hint or implementation specific resolution)?