-->
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: Make mapping fetch object on common property
PostPosted: Thu May 26, 2011 11:52 am 
Newbie

Joined: Thu May 26, 2011 11:39 am
Posts: 1
I have these two classes:

Code:
public class Parent
{
    public virtual string Name { get; set; }
    public virtual string Family_id { get; set; }
    public virtual IEnumerable<Children> Childrens { get; set; }
}

public class Children
{
    public virtual string Name { get; set; }
    public virtual DateTime BirthDate { get; set; }
    public virtual string Family_id { get; set; }
}


When I fetch a parent, I also want to fetch the childrens that has the same Family_id. Family_id is not a foreign key though, so I'm guessing I need to do some kind of join. How can I set up my mappings to accomplish this?


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.