Please direct user questions to the appropriate group at
http://groups.google.com/group/nhusers

This mailing list is for discussions about the development of the NH
codebase itself.

Steve Bohlen
[email protected]
http://blog.unhandled-exceptions.com
http://twitter.com/sbohlen


On Wed, Dec 28, 2011 at 2:11 PM, feelexit <[email protected]> wrote:

> I have 3 tables, they are very simple. User, Post, Favorite.
>
>
>            User Table:
>            Id: int
>            Name: string
>            --------------------------------
>
>            Post Table:
>            Id: int
>            Title: string
>            UserId: int  (this is the FK)
>            --------------------------------
>
>            Favorite Table:
>            UserId: int
>            PostId: int
>            --------------------------------
>
> I create 2 class files for User and Post tables. Dont know how to add
> Favorite table there, Favorite table allows User to bookmark their
> favorite posts.
>
>
>
> public class User : Entity
>            {
>                public User() { this.Posts = new List<Post>;}
>                public virtual string Name { get; set; }
>                public virtual IList<Post> Posts {get; set;}
>            }
>
>            public class Post : Entity
>            {
>                public Post() {}
>                public virtual string Title { get; set; }
>                public virtual User User { get; set; }
>            }
>
>
>

Reply via email to