Hi,
i have two classes Project and Activity.The relationship is
following...

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Model
{
   public class Project
    {
        public int Id { get; set; }
        public string name { get; set; }
        public List<Activity> Activities { get; set; }
    }

   public class Activity
   {
       public int Id { get; set; }
       public string Name { get; set; }
       public string Description { get; set; }
       public List<Activity> Activities { get; set; }

   }
}

Now my question is, Is Nhibernate support this relationship?.
If  so then what will be Tables and mapping files for this two
classes.



-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.


Reply via email to