Board Member Entity which is a super type of Manager Entity which is a super type of Employee
I guess you mean: Board Member Entity which is a sub-type of Manager Entity which is a sub-type of Employee.
In general, if you have a type which can be promoted to another type, then it might not be wise to use Inheritance from the start.
Otherwise you'd have to either delete the employee entity and add a BoardMemberEntity instead. Or hack the system to insert a row in the BoardMember table which refers to the specified EmployeEntity.