我在“CAR”表中有两个与同一个表“Image”相关的外键。
当我检查tt文件时,Image对象具有以下名称:(Image / Image1)
我需要做什么如果我想在fk上提供相同的名字? “FrontImage / BackImage” ??
Foreing Key Relationship Identity:
FK_Car_FrontImage
FK_Car_BackImage
EF:
public partial class Car{
public long Id { get; set; }
public Nullable<long> FrontImageId { get; set; }
public Nullable<long> BackImageId { get; set; }
public virtual Image Image { get; set; }
public virtual Image Image1 { get; set; }
}