-->
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.  [ 3 posts ] 
Author Message
 Post subject: [solved] join fetch on empty collections
PostPosted: Tue Feb 02, 2010 7:16 am 
Newbie

Joined: Fri Aug 22, 2008 6:12 am
Posts: 13
Hello there,

I am executing a query like this:
Code:
select p from Product as p join fetch p.inventories as i

where inventories is a collection of Inventory *duh*.

I only get results for Products that have Inventories but I need also those without...

_________________
believing in the impossible makes it possible


Last edited by woezelmann on Tue Feb 02, 2010 8:18 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: join fetch on empty collections
PostPosted: Tue Feb 02, 2010 7:57 am 
Expert
Expert

Joined: Wed Mar 03, 2004 6:35 am
Posts: 1240
Location: Lund, Sweden
Use a left join:

Code:
select p from Product as p left join fetch p.inventories as i


Top
 Profile  
 
 Post subject: Re: [solved] join fetch on empty collections
PostPosted: Tue Feb 02, 2010 8:19 am 
Newbie

Joined: Fri Aug 22, 2008 6:12 am
Posts: 13
great, works, thanks

_________________
believing in the impossible makes it possible


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

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.