Mechanism typical to ORM frameworks that allows the creation of queries against a database in a dynamic and object-oriented fashion.
I need to be able to do the following: Select * from Table1 left join Table2 on id1 = id2 AND i1 = ? …
hibernate join criteriaWell as the question title says, I am trying to make a projection criteria querying only couple of the table …
java hibernate criteria hibernate-criteria restrictionsI have a Person entity belongs to a person has a Country, I want to select all the distinct countries …
nhibernate criteria icriteriaI am going to create this SQL query's Criteria equivalent: SQL: SELECT orders.id, book.title, orderitem.quantity FROM orderitem …
hibernate criteria nhibernate-criteriaI have a class AppUser; class AppUser { private String firstName; private String lastName; //-- getters and setters } I also have …
java hibernate criteriaI have a query created with Hibernate Criteria like this: Criteria criteria = db.getSession().createCriteria(Vendor.class); criteria.addOrder(Property.…
java hibernate sorting criteria case-insensitiveWhat are the performance differences between the hql and criteriaApi and QueryOver? Are there any situations where one is faster …
performance nhibernate criteria icriteriaOur application uses ajax very heavily and as a result of this we have statements like var items = #{@items.to_…
arrays mongoid criteriaI'm using ResultTransformer to select only particular properties from entity, just i don't need all properties from entity. But the …
java hibernate criteria resulttransformer