-->
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: Criteria and subclass property
PostPosted: Tue Feb 19, 2013 11:21 am 
Newbie

Joined: Thu Nov 25, 2010 8:12 am
Posts: 9
Hello,
I have an object Domcat that extends from Cat.
I have a query criteria
Code:
Criteria c = session.createCriteria(Cat.class);
c.list();


the results return Cat object. I would like to call a property of Domcat if result is an instance, how can I do that?

Thanks.


Top
 Profile  
 
 Post subject: Re: Criteria and subclass property
PostPosted: Tue Feb 19, 2013 11:08 pm 
Senior
Senior

Joined: Wed Sep 19, 2007 9:31 pm
Posts: 191
Location: Khuntien (Indonesia)
Hi,

You can query using the subclass
Code:
Criteria c = session.createCriteria(Domcat.class);


or

Code:
Criteria c = session.createCriteria(Cat.class);
List<Cat> list =c.list();
..
Cat cat = list.get(0);
if(cat instanceof Domcat){
   Domcat domcat = (Domcat) cat;
}


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.