Tagged Questions
The criteria tag has no wiki summary.
76
votes
11answers
42k views
Hibernate: Criteria vs. HQL
What are the pros and cons of using Criteria or HQL? The Criteria API is a nice object-oriented way to express queries in Hibernate, but sometimes Criteria Queries are more difficult to ...
15
votes
3answers
12k views
NHibernate - CreateCriteria vs CreateAlias
Assuming the following scenario:
class Project{
public Job Job;
}
class Job{
public Name;
}
Assuming I want to use the Criteria API to search for all projects whose Job has the name ...
12
votes
1answer
6k views
Group by month with criteria in Hibernate
I'm trying to get a report using Criteria and ProjectionList, and I'm pretty new using this through hibernate.
So I have this model:
private Long _userId;
private Category _category;
private ...
12
votes
4answers
12k views
Hibernate criteria: Joining table without a mapped association
I'd like to use Hibernate's criteria api to formulate a particular query that joins two entities. Let's say I have two entities, Pet and Owner with a owner having many pets, but crucially that ...
10
votes
1answer
294 views
List<int> takes long time to instantiate with Nhibernate Criteria
I have this query which returns 7 rows and takes 4ms in the database but 1075ms to instantiate. That is just one example of the times and it varies on the objects but it doesn't seem to make sense ...
10
votes
4answers
3k views
9
votes
1answer
567 views
Badge achievement system like SO: Data being used + Criteria(instant awarding & cron jobs)
I've been looking at an open source clone of SO,
http://github.com/cnprog/CNPROG
I don't know Python/Django but I can still read whats going on,
The developers, seem to only be awarding badges with ...
9
votes
4answers
5k views
How can one delete NHibernate objects using a criteria?
This must be a simple question. Given a criteria, how one deletes the entities satisfying the criteria?
The rationale:
HQL and NH criteria are NHibernate specific constructs and as such they are ...
9
votes
3answers
11k views
How to get SQL from Hibernate Criteria API (*not* for logging)
is there an easy way to get the (to-be-generated) sql from a Hibernate Criteria?
Ideally I would have something like:
Criteria criteria = session.createCriteria(Operator.class);
... build up the ...
9
votes
4answers
3k views
Is there any easy way to convert Criteria to HQL?
I have posted a question few days ago about Querying on collections with the Criteria API and after all the answers i see that the thing that i am trying is not possible with the Criteria, there is a ...
9
votes
8answers
39k views
Hibernate Query By Example and Projections
To make it short: hibernate doesn't support projections and query by example? I found this post:
The code is this:
User usr = new User();
usr.setCity = 'TEST';
...
8
votes
2answers
7k views
How to achieve “not in” by using Restrictions and criteria in Hibernate?
I have list of category. I need a list of category by excluding 2,3 row. Can we achieve through hibernate by using Criteria and Restriction?
8
votes
2answers
3k views
Does NHibernate Criteria API support projections on collection properties?
I need to replicate the following working HQL query using criteria API.
session.CreateQuery(
"select c " +
"from Parent p " +
"inner join p.Children c " +
"where p.Id = 9 " +
"and ...
8
votes
3answers
6k views
Using hibernate criteria, is there a way to escape special characters?
For this question, we want to avoid having to write a special query since the query would have to be different across multiple databases. Using only hibernate criteria, we want to be able to escape ...
7
votes
1answer
2k views
JPA2: Case-insensitive like matching anywhere
I have been using Hibernate Restrictions in JPA 1.0 ( Hibernate driver ). There is defined Restrictions.ilike("column","keyword", MatchMode.ANYWHERE) which tests if the keyword matching the column ...
7
votes
4answers
1k views
NHibernate HQL vs CriteriaAPI vs QueryOver. Performance
What are the performance differences between the hql and criteriaApi and QueryOver? Are there any situations where one is faster or slower than the other?
Edit: I extended the question with ...
6
votes
2answers
407 views
How can I express joining to a grouped subquery using NHibernate?
I'm trying to express a SQL query using NHibernate's Criteria API, and I'm running into difficulty because I'm thinking in a database-centric way while NHibernate is object-centric.
SQL (works ...
6
votes
3answers
6k views
JPA - FindByExample
Does anyone have a good example for how to do a findByExample in JPA that will work within a generic DAO via reflection for any entity type? I know I can do it via my provider (Hibernate), but I ...
6
votes
1answer
741 views
casting string to bool using nHibernate Criteria
I have an nHibernate query using Criteria, and I am trying to cast a string to bool in the query itself. I have done the same with casting a string to int, and that works well (the "DataField" ...
6
votes
5answers
6k views
Hibernate Criteria and multiple join
is possible with Hibernate criteria do it?
select A.something, B.something, C.something, D.something
from A JOIN B on A.id = B.id_fk
JOIN C ON B.id = C.id_fk
JOIN D ON C.id = ...
6
votes
6answers
2k views
Adding a projection to an NHibernate criteria stops it from performing default entity selection
I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of available rows, as suggested ...
6
votes
1answer
2k views
NHibernate creates proxy via session.Load(), but not via Linq or Criteria API
I have an odd problem in my current project. Lazy loading for queries does not work. When I query a list, nhibernate fetches all associations separately.
I extracted small parts of it and put it into ...
6
votes
1answer
5k views
Sorting on multiple fields with criteria in Grails
I have the following query which id like to sorty by "raceDate" and by "raceNo" asc. I can figure out how to sort by one field, but not by two, any ideas?
def list = {
params.max = Math.min( ...
6
votes
4answers
834 views
Choosing a Subversion Server
After settling on Subversion as my RCS needs (and AnkhSVN/TortoiseSVN for my primary Subversion clients), I am trying to choose an SVN server. I have looked at a bunch of them:
Local (ie file:///)
...
6
votes
3answers
3k views
how to user year() and month() functions in NH Criteria API?
I need to use year() and month() functions in Criteria API to be able to express a business filter constrain. Expressions like
cri.Add(Expression.Ge("year(Duration.DateFrom)", Year.Value));
...
5
votes
1answer
861 views
mongoid find VS where
i seem to only be having this issue with 1 particular model when i am searching by ID
>> Cart.where(:_id => '4dae5902e1607c232c000009').first
=> #<Cart _id: 4dae5902e1607c232c000009, ...
5
votes
2answers
691 views
ElementCollection createAlias in hibernate API
does anyone know if and how the solution for following question (which is written in the JPA API) can be written using the hibernate criteria API?
To be more specific I have a Discussion entity that ...
5
votes
2answers
595 views
Question regarding chaining multiple any_of criteria #Mongoid
I have a requirement where I need to run a MongoDB query like the following:
db.collection.find({ $or : [{"field1" : "value1"}, {"field2" : "value2"}],
$or : [{"field3" : "value3"}, {"field4" : ...
5
votes
3answers
1k views
Criteria API returns a too small resultset
How is this possible, I have to following criteria
Criteria criteria = getSession().createCriteria(c);
criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
...
5
votes
2answers
2k views
What is Alef Hamza? [closed]
I found this one, in the Find box (as Search criteria) of the document viewer.
What is supposed to match?
4
votes
2answers
168 views
Write ICriteria for CONTAINSTABLE (sql fulltext search)
I need to do fulltext search over multiple tables, so i use SqlServer CONTAINSTABLE function, it works fine as a SQL query, but how can i rewrite CONTAINSTABLE into NHibernate ICriteria.
SELECT ...
4
votes
1answer
34 views
Converting HQL 'in' restriction to Criteria
I have a query like this:
Query query = session.createQuery("from table1 c where c.colummewhatever =:value and (select p.colummewhatever from table2 p where c.fkidcolumme=p.idcolumme) in ...
4
votes
4answers
195 views
Hibernate Criteria Limit mechanism?
Hibernate Criteria support provides a setMaxResults() method to limit the results returned from the db.
I can't find any answer to this in their documentation - how is this implemented? Is it ...
4
votes
3answers
540 views
Do you like the Criteria api of JPA 2.0? Do you use it with framework?
I'm used to work with Criteria API in Hibernate, and just watched how the Criteria in JPA 2.0 work.
What i like most in the Criteria of Hibernate is the ease we have to compose with Criterions.
The ...
4
votes
1answer
304 views
hibernate inner select in from clause
I'd like to know if it's possible to specify a select clause in a from clause something like
select count(*) as Y, this_.NAME as A, sel2.C
from TABLE1 this_,
(select count(*) as C from
...
4
votes
2answers
383 views
Hibernate Criteria n+1 issue with maxresults
Using hibernate ctiteria I want to select an object and it's associated oneToMany list of objects. I want to paginate through this list avoiding the dreaded hibernate n+1 select issue
Here's a ...
4
votes
2answers
436 views
Getting a count of rows in a datatable that meet certain criteria
I have a datatable, dtFoo, and would like to get a count of the rows that meet a certain criteria.
EDIT: This data is not stored in a database, so using SQL is not an option.
In the past, I've used ...
4
votes
2answers
334 views
Java Persistence Criterias; Cast Expression<Timestamp> to Expression<Long>?
I am using the CriteriaBuilder and CriteriaQuery to build my query to the database, but I have encountered an issue that I do not know how to solve, since I am very new to this whole ordeal called ...
4
votes
2answers
532 views
Hibernate Child Collection Limited When Using Left Join in Criteria
When using hibernate criteria just altering the join type affects the results of the child collections of the root domain class.
For instance, having class Parent have a one-to-many relationship with ...
4
votes
1answer
657 views
Hibernate, getting duplicate values
I am writing a very simple query, but I am getting duplicate values for some reason.
Criteria cr = session.createCriteria(ProcessInstance.class, "p")
.add(Restrictions.isNull("end"));
...
4
votes
2answers
918 views
How to get the resultant array from a Mongoid::Criteria without an “each” block
Our application uses ajax very heavily and as a result of this we have statements like var items = #{@items.to_json} in all our views. Now @items is being set in the controller as @items=Item.all. The ...
4
votes
1answer
1k views
NHibernate Left Outer Join
I'm looking to create a Left outer join Nhibernate query with multiple on statements akin to this:
SELECT
*
FROM [Database].[dbo].[Posts] p
LEFT JOIN
[Database].[dbo].[PostInteractions] i
...
4
votes
6answers
2k views
Hibernate Criteria API - adding a criterion: string should be in collection
I have to following entity object
@Entity
public class Foobar {
...
private List<String> uuids;
...
}
Now I'd like to make a criteria query which would fetch all Foobar pojos ...
4
votes
1answer
1k views
Hibernate Criteria: Add restrictions to Criteria and DetachedCriteria
Currently our queries add a variety of Restrictions to ensure the results are considered active or live. These Restrictions are used in several places/queries so a method was setup similar to
public ...
4
votes
2answers
151 views
Global find object references in NHibernate
Is it possible to perform a global reversed-find on NHibernate-managed objects?
Specifically, I have a persistent class called "Io". There are a huge number of fields across multiple tables which ...
4
votes
1answer
1k views
nHibernate Many-to-Many query using Criteria API
Before asking I have looked at all relevant posts on this topic
I have also read this blog post: ...
4
votes
2answers
8k views
(Lazy) LEFT OUTER JOIN using the Hibernate Criteria API
I want to perform a LEFT OUTER JOIN between two tables using the Criteria API. All I could find in the Hibernate documentation is this method:
Criteria criteria = this.crudService
...
4
votes
1answer
1k views
Hibernate query a foreign key field with ID
For example, I have two entities: Employee and Address. Of these enitities, Employee has a foreign key AddressID references the ID column on Address. In the Java domain objects, Hibernate nicely wraps ...
4
votes
1answer
1k views
NHibernate Criteria Query - Select Distinct
I have a Person entity belongs to a person has a Country, I want to select all the distinct countries that have people in them. Easy in HQL
select distinct p.Country from Person p
How can I do this ...
4
votes
3answers
3k views
Hibernate criteria query on different properties of different objects
Suppose I have classes like:
class A {
B getB();
C getC();
}
class B {
String getFoo();
}
class C {
int getBar();
}
and I want to filter criteria on A, two filters on different subclass ...