我有以下实体:
public class User
{
public int ID {get; set;}
public int GroupID {get; set;} // navigation property with
public Group Group {get; set;} // foreign key field
public Adress Adress {get; set;} // navigation property only
}
从实体框架生成的表如下所示:
ID
GroupID
Adress_ID
我不喜欢 FK 列的列命名不一样。我可以实现两者都使用相同的约定“GroupID,AdressID”或“Group_ID,Adress_ID”吗?
我使用约定而不是配置,不想使用 Fluent API。