-->
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: a problem about lazy loading, join table and where clause
PostPosted: Tue Oct 18, 2005 5:07 am 
Newbie

Joined: Mon Aug 29, 2005 4:20 am
Posts: 1
The class A owns a set of B as the below codes

class A
{
Set b;

Set getB() { return b; }
}

class B
{
int flag;

int getFlag() { return flag; }
}

The mapping file of class B is below

<hibernate-mapping>
<class name="B" table="b" where="flag > 0">
....

I exludes some instances of B by the where clause. But the relation between A and B is mapped to a join table and the the relation is loaded when a instance of A is initiated.

If a instance of B is referencd by a instance of A and the instance is exluded by where clause, a exception is throwed when the B's instance is reached through A's instance.


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.