Re: [google-appengine] JDO - how to fetch child object automatically when the child is in different parent classes?

2010-03-05 Thread Ikai L (Google)
No, you'll have to add this to your DAO layer. It sounds like in your example, c is actually the Parent and both a and b are the children (but that's just me playing games with words and naming). On Wed, Mar 3, 2010 at 9:10 AM, anjolight wrote: > Hi, > > I'm trying to create a Child class which i

[google-appengine] JDO - how to fetch child object automatically when the child is in different parent classes?

2010-03-03 Thread anjolight
Hi, I'm trying to create a Child class which is stored in both ParentA class and ParentB class as below. //- // Both ParentA and ParentB class store a same Child object instance. //- Child c = new Child(); ParentA a = new ParentA();