EmployeeId
EmployeeName
ManagerId
// EmployeeId of the manager
int ManagerId { get; set; }
// EmployeeName of the manager
string ManagerName { get; set; }
// EmployeeId of the employee that is attached to this manager
int ChildEmployeeId { get; set; }
Manager是一个Employee,也意味着ManagerId是EmployeeId。一名员工只有一名经理,一名经理只有一名员工。
我必须弄清楚可以填充上面的Manager类的NHibernate Fluent类映射;任何有关如何看起来的帮助非常感谢!!!
请记住,这是一个模型/表格,我继承了很多技术债务以对其进行更改(从时间角度来看)。
-Jessy Houle