java Programming Glossary: cq.from
How to query an M:N relationship with JPA2? http://stackoverflow.com/questions/11297241/how-to-query-an-mn-relationship-with-jpa2 cq cb.createQuery BlogPost.class Root BlogPost blogPost cq.from BlogPost.class SetJoin BlogPost Tag tags blogPost.join BlogPost_.tags..
JPA & Criteria API - Select only specific columns http://stackoverflow.com/questions/12618489/jpa-criteria-api-select-only-specific-columns the Root Path elements as usual Root EntityClazz root cq.from EntityClazz.class cq.multiselect root.get EntityClazz_.ID root.get.. the Root Path elements as usual Root EntityClazz root cq.from EntityClazz.class cq.multiselect root.get EntityClazz_.ID root.get..
Dynamic JPA 2.0 query using Criteria API http://stackoverflow.com/questions/2510106/dynamic-jpa-2-0-query-using-criteria-api EntityType Foo Foo_ m.entity Foo.class Root Foo foo cq.from Foo_ cq.where my.get Foo_.name .in params You might want to..
Brainstorming: Weird JPA problem, possibly classpath or jar versioning problem? http://stackoverflow.com/questions/2614989/brainstorming-weird-jpa-problem-possibly-classpath-or-jar-versioning-problem cq entityManager.getCriteriaBuilder .createQuery cq.select cq.from com.xyz.abc.services.persistence.entity.MyEntity.class List..
Hibernate Criteria API - adding a criterion: string should be in collection http://stackoverflow.com/questions/2735071/hibernate-criteria-api-adding-a-criterion-string-should-be-in-collection Foobar cq b.createQuery Foobar.class Root Foobar foobar cq.from Foobar.class TypedQuery Foobar q em.createQuery cq.select foobar..
In JPA 2, using a CriteriaQuery, how to count results http://stackoverflow.com/questions/2883887/in-jpa-2-using-a-criteriaquery-how-to-count-results Long cq qb.createQuery Long.class cq.select qb.count cq.from MyEntity.class cq.where your stuff return entityManager.createQuery..
Complex queries with JPA criteria builder http://stackoverflow.com/questions/3842122/complex-queries-with-jpa-criteria-builder Tuple cq cb.createTupleQuery Root Transaction r cq.from Transaction.class Predicate p cb.conjunction for Map.Entry String.. Tuple cq cb.createTupleQuery Root Transaction r cq.from Transaction.class Predicate p cb.conjunction for Map.Entry SingularAttribute..
|