-->
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: Related Entities in Criteria Queries
PostPosted: Tue Jun 14, 2005 12:14 pm 
Newbie

Joined: Tue Jun 14, 2005 10:32 am
Posts: 4
I've seen examples in Hibernate docs to filter on properties of related entities in a criteria query using CreateCriteria or CreateAlias like this:

List cats = sess.createCriteria(Cat.class)
.add( Expression.like("name", "F%")
.createCriteria("kittens")
.add( Expression.like("name", "F%")
.list();

OR

List cats = sess.createCriteria(Cat.class)
.createAlias("kittens", "kt")
.createAlias("mate", "mt")
.add( Expression.eqProperty("kt.name", "mt.name") )
.list();

NHibernate doesn't seem to have these methods in the ICriteria interface. Anyone know any approach to accomplish this in 0.8.4?

I had actually created a separate criteria and cast it to an ICriterion, added it to the criteria, and then added an expression with success previously, but now it doesn't work.

Any advice appreciated. Thanks.


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.