如果与 Table 的多个关系命名父实体关系 - 实体数据模型 - ADO.Net

Naming Parent Entity Relations if multiple relations with a Table - Entity Data Model - ADO.Net

如果 table 与其他 table 有多重关系。 例如员工和约会 tables。 约会 table 有 2 个字段作为来自员工 table 的外键。 1 键用于约会,其他键用于我们为添加该记录的员工保留的键。

现在,在代码中,当我们通过 Appointment 对象访问 Employee 时,它​​会提供像 Appointment.Employee 和 Appointment.Employee1

这样的引用

有没有办法将 Employee 和 Employee1 重命名为有意义的关系?

提前致谢,

您可以随意命名您的导航属性

 public class Appointment
    {
        ...other props
        public int EmployeeId { get; set; }
        public virtual Employee Employee { get; set; }

        public int CreatedByEmployeeId { get; set; }
        public virtual Employee CreatedByEmployee { get; set; }
    }

因此您可以这样称呼它:Appointment.Employee 或 Appointment.CreatedByEmployee