一对一关系到EF(Core)中同一表的多个关系

时间:2020-08-26 15:42:26

标签: .net-core entity-framework-core one-to-one

在Ef核心中,我有下面的类,它们具有一对一的关系。

clang

}

public class Resident {
 public int Id { get; set; }
 public int Name { get; set; }
 [ForeignKey("FirstVehicle")]
 public int FirstVehicleId { get; set; }
 [ForeignKey("SecondVehicle")]
 public int SecondVehicleId { get; set; }
 public virtual Vehicle FirstVehicle { get; set; }
 public virtual Vehicle SecondVehicle { get; set; }

}

我为“居民”表创建了如下配置。

public class Vehicle {
 public int Id { get; set; }
 public int Name { get; set; }
 public string Brand{ get; set; }
 public Resident Resident { get; set; }

当我创建“迁移”时,出现以下错误。 System.InvalidOperationException:无法在“ Vehicle.Resident”和“ “ Resident.SecondVehicle”,因为“ Vehicle.Resident”与 'Resident.FirstVehicle'。导航属性只能参与单个关系。

还有其他方法吗?

0 个答案:

没有答案