Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3.0.5
Mapping documents:
Code between sessionFactory.openSession() and session.close():
Full stack trace of any exception that occurs:
Name and version of the database you are using:
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
I've noted in the hibernate documentation that createFilter allows one to sort collection members.
Quote:
Associations may even be sorted by some arbitrary criteria at runtime using a collection filter().
sortedUsers = s.createFilter( group.getUsers(), "order by this.name" ).list();
I also noted that this does not sort in place (i.e. group.getUsers() is not sorted). Is there a good way to re-associate the new list with group.getUsers(), or to get hibernate to sort in place?