EF Core 2.1-使用流畅的API时重复关系

时间:2018-10-23 19:48:20

标签: entity-framework-core ef-core-2.1

我使用.NET Core 2.1和EF Core开发了一个Web API。 但是我的ApplicationDbContext有一个我不明白的问题。 我有2个表(“用户”和“配置文件”,一对多),“用户”表中的外键配置文件不是必需的。

使用Fluent API,当我声明我的关系时,ef core在同一引用上创建重复的外键,但是为什么呢?

这是我的userModel:

public class UserModel
{
    public long Id { get; set; }

    public string Username { get; set; }

    public string Password { get; set; }

    public DateTime DateAdded { get; set; }

    public DateTime? DateUpdated { get; set; }

    public DateTime? DateLastConnection { get; set; }

    public long? ProfileId { get; set; }

    public ProfileModel Profile { get; set; }
}

public class UserModelConfiguration : IEntityTypeConfiguration<UserModel>
{
    public void Configure(EntityTypeBuilder<UserModel> builder)
    {
        builder.ToTable("USR_USER");

        builder.Property(table => table.Id).HasColumnName("ID").HasColumnType("bigint").UseSqlServerIdentityColumn();
        builder.Property(table => table.Username).HasColumnName("USERNAME").HasColumnType("nvarchar(20)").HasMaxLength(20).IsRequired();
        builder.Property(table => table.Password).HasColumnName("PASSWD").HasColumnType("nvarchar(200)").HasMaxLength(200).IsRequired();
        builder.Property(table => table.DateAdded).HasColumnName("DATE_ADDED").HasColumnType("datetime").IsRequired().IsRequired();
        builder.Property(table => table.DateUpdated).HasColumnName("DATE_UPDATED").HasColumnType("datetime");
        builder.Property(table => table.DateLastConnection).HasColumnName("LAST_CONNECTION").HasColumnType("datetime");
        builder.Property(table => table.ProfileId).HasColumnName("PROFILE_ID").HasColumnType("bigint");

        builder.HasKey(table => table.Id);
        builder.HasAlternateKey(table => table.Username);

        builder.HasOne<ProfileModel>()
            .WithMany(p => p.Users)
            .HasForeignKey(u => u.ProfileId);
    }
}

这是我的ProfileModel:

public class ProfileModel
{
    public long Id { get; set; }

    public string Name { get; set; }

    public string Description { get; set; }

    public ICollection<UserModel> Users { get; set; }

    public ICollection<ProfileRoleModel> ProfileRoles { get; set; }
}

public class ProfileModelConfiguration : IEntityTypeConfiguration<ProfileModel>
{
    public void Configure(EntityTypeBuilder<ProfileModel> builder)
    {
        builder.ToTable("USR_PROFILE");

        builder.Property(p => p.Id).HasColumnName("ID").HasColumnType("bigint").UseSqlServerIdentityColumn();
        builder.Property(p => p.Name).HasColumnName("PROFILE_NAME").HasColumnType("nvarchar(20)").HasMaxLength(20).IsRequired();
        builder.Property(p => p.Description).HasColumnName("PROFILE_DESCRIPTION").HasColumnType("nvarchar(200)").HasMaxLength(200).IsRequired();

        builder.HasKey(p => p.Id);
    }
}

这是我的应用程序上下文:

public class ApplicationDbContext : DbContext
{
    public ApplicationDbContext(DbContextOptions options) : base(options)
    {
    }

    public DbSet<UserModel> Users { get; set; }

    public DbSet<ProfileModel> Profiles { get; set; }

    public DbSet<ProfileRoleModel> ProfileRoles { get; set; }

    public DbSet<RoleModel> Roles { get; set; }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        modelBuilder.ApplyConfiguration(new UserModelConfiguration());
        modelBuilder.ApplyConfiguration(new ProfileModelConfiguration());
        modelBuilder.ApplyConfiguration(new ProfileRoleModelConfiguration());
        modelBuilder.ApplyConfiguration(new RoleModelConfiguration());
    }
}

迁移结果如您所见,有两个外键。 因此,当我查询我的DbSet用户时,我遇到一个SQL错误“未知列ProfileId1”

CREATE TABLE [USR_PROFILE] (
    [ID] bigint NOT NULL IDENTITY,
    [PROFILE_NAME] nvarchar(20) NOT NULL,
    [PROFILE_DESCRIPTION] nvarchar(200) NOT NULL,
    CONSTRAINT [PK_USR_PROFILE] PRIMARY KEY ([ID])
);

GO

CREATE TABLE [USR_USER] (
             [ID] bigint NOT NULL IDENTITY,
             [USERNAME] nvarchar(20) NOT NULL,
             [PASSWD] nvarchar(200) NOT NULL,
             [DATE_ADDED] datetime NOT NULL,
             [DATE_UPDATED] datetime NULL,
             [LAST_CONNECTION] datetime NULL,
             [PROFILE_ID] bigint NULL,
             [ProfileId1] bigint NULL,
             CONSTRAINT [PK_USR_USER] PRIMARY KEY ([ID]),
             CONSTRAINT [AK_USR_USER_USERNAME] UNIQUE ([USERNAME]),
             CONSTRAINT [FK_USR_USER_USR_PROFILE_PROFILE_ID] FOREIGN KEY ([PROFILE_ID]) REFERENCES [USR_PROFILE] ([ID]) ON DELETE NO ACTION,
             CONSTRAINT [FK_USR_USER_USR_PROFILE_ProfileId1] FOREIGN KEY ([ProfileId1]) REFERENCES [USR_PROFILE] ([ID]) ON DELETE NO ACTION
    );

    GO

我的其他DbSet有相同的问题,但我认为这是一个类似的问题。

我的配置基于此文档Fully Defined Relationship

1 个答案:

答案 0 :(得分:1)

这是因为您具有导航属性

public ProfileModel Profile { get; set; }

但配置流畅

builder.HasOne<ProfileModel>()

您正在告诉EF这不是该关系的一部分。因此,EF通常将其映射到具有自动生成的FK名称的另一个单独的关系。

您应始终使用Has / With方法重载,该重载表示在关系的相应末端是否存在导航属性。

根据您的情况,将以上内容替换为

builder.HasOne(u => u.Profile)

问题将得到解决。