I Have a class Group like this:
public class Group {
public int GroupId{get;set;}
public string GroupName{get;set;}
public IList ParentGroups{get;set;}
public IList ChildGroups{get;set;}
}
I want to generate NHibernate mapping for this and generate schema so that there is a group table and a group association table. Is this possible in NHibernate? If so, can somebody point me in the right direction.