-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Criteria Subquerie
PostPosted: Thu Apr 01, 2010 8:18 am 
Regular
Regular

Joined: Wed Mar 10, 2010 4:48 am
Posts: 106
How can I use a subquery in Criteria?

I have a object Country and a object CountryName.
Country has an one-to-many relation to CountryName.

In SQL I would use:
Code:
SELECT * FROM countries WHERE id IN (SELECT country FROM countryNames WHERE ...) AND ...

The question is how to do this part: id IN (subquery)

At the moment I have this code:
Code:
DetachedCriteria countryNames = DetachedCriteria.forClass(CountryName.class);
countryNames.setProjection(Property.forName("country"));
countryNames.add(Restrictions.eq("name", countryName));// countryName is a string

Country country = (Country) session.createCriteria(Country.class).add(Subqueries.in(, countryNames)).list().get(0);


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.