-->
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.  [ 2 posts ] 
Author Message
 Post subject: Equi Join using Restrictions ?
PostPosted: Wed Mar 28, 2007 5:03 am 
Newbie

Joined: Wed Mar 28, 2007 4:59 am
Posts: 1
I need to create an equi join Criterion.

ie.
where
this.id = that.id

Which Restrictions method allows me to do that ?


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 28, 2007 12:40 pm 
Regular
Regular

Joined: Wed May 05, 2004 3:41 pm
Posts: 118
Location: New Jersey,USA
You could do something like this:

Code:
Criteria crit = session.createCriteria(Employee.class,"emp")
      .createCriteria("empHistory","hist")
      .add(Expression.eqProperty("emp.employeeId","hist.employeeId"));

_________________
--------------
Don't forget to Rate the post


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.