我有下表作为我的实体
public class Customer
{
public int CustId{get;set;}
public string Name {get;set;}
}
public class Address
{
public int Id{get;set;}
public string Name {get;set;}
**public virtual Customer Customer {get;set;}**
}
在我使用 Fluent API 的地址模型配置中。我有以下代码
HasKey(p => p.Id);
HasRequired(p => p.Customer).WithMany().Map(m => m.MapKey("CustId"));
我真正想要的不是使用
公共虚拟客户 Customer {get;set;}
我想要拥有 Public Int CustID; 地址类中的属性...并且仍然将映射
作为外键进行。
有人可以提出一些建议吗...