I am creating an employee table using power tools, and I am trying to add a self referencing relation on the table. Table structure public class Employee { public int EmployeeId { get; set; } public string Name { get; set; } // Self-Referential Relationship public int? ManagerId { get; set; } public Employee Manager { get; set; } }