Hibernate version:3.0.1
The Hibernate API has the following method
Code:
public Query createFilter(Object collection,
String queryString)
throws HibernateException
Also was hoping to find the following API as it would allow more powerful programmatic manipulations (sort in addition to filter etc) of collections.
Code:
public Criteria createCriteria(Object collection)
throws HibernateException
Can this be added?
Thanks,
Sanjiv
PS: I was wondering why the API take the collection argument as Object type and not java.util.Collection.