java Programming Glossary: session.createcriteria
A class that behaves like @Entity and @Embeddable http://stackoverflow.com/questions/1029745/a-class-that-behaves-like-entity-and-embeddable @SuppressWarnings unchecked List Team list session.createCriteria Team.class .list assertEquals 1 list.size Team persisted list.get..
How to add Distinct in Hibernate Criteria http://stackoverflow.com/questions/10731723/how-to-add-distinct-in-hibernate-criteria both the types with the same name as sun . Criteria crit session.createCriteria Test.class final ResultTransformer trans new DistinctRootEntityResultTransformer.. this question Use Projections.distinct. Criteria crit session.createCriteria Test.class .setProjection Projections.distinct Projections.projectionList..
How do we count rows using Hibernate? http://stackoverflow.com/questions/1372317/how-do-we-count-rows-using-hibernate question Assuming the classname is Book return Number session.createCriteria Book .setProjection Projections.rowCount .uniqueResult It is..
Hibernate Criteria returns children multiple times with FetchType.EAGER http://stackoverflow.com/questions/1995080/hibernate-criteria-returns-children-multiple-times-with-fetchtype-eager duplicate references of the same Order object List result session.createCriteria Order.class .setFetchMode lineItems FetchMode.JOIN .list .. name Order ... set name lineItems fetch join List result session.createCriteria Order.class .list List result session.createQuery select o..
Is there a portable way to have “SELECT FIRST 10 * FROM T” semantic? http://stackoverflow.com/questions/3400589/is-there-a-portable-way-to-have-select-first-10-from-t-semantic and Criteria#setMaxResults . E.g. List users session.createCriteria User.class .addOrder Order.asc id .setFirstResult 0 Index of..
How to get SQL from Hibernate Criteria API (*not* for logging) http://stackoverflow.com/questions/554481/how-to-get-sql-from-hibernate-criteria-api-not-for-logging Ideally I would have something like Criteria criteria session.createCriteria Operator.class ... build up the criteria ... ... and then do..
|