我正在使用实体框架 5,代码优先。
我有两个域对象(或表)。第一个是User,第二个是UserProfile。一个用户只能拥有一个配置文件,一个配置文件只属于一个用户。那是1-1的关系。
这是类....(我简化了代码以使其易于理解,实际上更复杂)
用户
public class User {
public virtual Int64 UserId { get; set; }
public virtual UserProfile UserProfile { get; set; }
public virtual String Username{ get; set; }
public virtual String Email { get; set; }
public virtual String Password { get; set; }
}
用户资料
public class UserProfile {
public virtual Int64 UserId { get; set; }
public virtual User User { get; set; }
public virtual Int64 Reputation { get; set; }
public virtual String WebsiteUrl { get; set; }
}
这里是地图......
用户地图
public UserMap() {
this.Property(t => t.Email)
.IsRequired()
.HasMaxLength(100);
this.Property(t => t.Password)
.IsRequired()
.HasMaxLength(15);
this.Property(t => t.Username)
.IsRequired()
.HasMaxLength(15);
}
用户资料图
public UserProfileMap()
{
this.HasKey(t => t.UserId);
}
这是上下文....
public class TcContext : DbContext {
static TcContext () {
Database.SetInitializer(new TcContextInitializer());
}
public DbSet<User> Users { get; set; }
public DbSet<UserProfile> UserProfiles { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder) {
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>();
modelBuilder.Configurations.Add(new UserMap());
modelBuilder.Configurations.Add(new UserProfileMap());
}
}
这是我的错误信息....
Unable to determine the principal end of an association between the types 'Tc.Domain.UserProfile' and 'Tc.Domain.User'. The principal end of this association must be explicitly configured using either the relationship fluent API or data annotations.
我认为EF应该以这种方式自动确定关系。但它给了我上面的错误信息。我已经研究了这个问题一段时间,但在我的案例中找不到一个很好的说明。
我的错误在哪里?或者,我应该在地图中定义某种附加关系吗?