我正在尝试使用Fluent API(实体框架v5)在以下域类之间建立外键关系:
public partial class User
{
public long UserID { get; set; }
public string UserName { get; set; }
}
public partial class AccountGroup : BaseEntity
{
public long AccountGroupID { get; set; }
public string Name { get; set; }
public long ModifiedBy { get; set; }
public virtual User User { get; set; }
}
Fluent API
builder.Entity<User>().HasKey(p => p.UserID); //Set User Id as primary key
builder.Entity<AccountGroup>().HasKey(x => x.AccountGroupID); //SetAccountGroupId as PK
我不确定如何使用Fluent API在User.UserId和AccountGroup.ModifiedBy列之间设置关系。我可以通过Data Annotation执行此操作,但我正在寻找使用流畅api
的解决方案答案 0 :(得分:3)
从您的实体中删除ModifiedBy属性:
public partial class AccountGroup
{
public long AccountGroupID { get; set; }
public string Name { get; set; }
public virtual User User { get; set; }
}
然后像这样映射外键:
builder.Entity<AccountGroup>()
.HasRequired(x => x.User)
.WithMany()
.Map(m => m.MapKey("ModifiedBy"));
如果外键应该可以为空,请使用HasOptional:
builder.Entity<AccountGroup>()
.HasOptional(x => x.User)
.WithMany()
.Map(m => m.MapKey("ModifiedBy"));
您也不需要像现在这样指定主键。实体框架将按惯例发现它们。