Entity Framework 核心多对多更改导航 属性 名称
Entity Framework Core Many to Many change navigation property names
我有一个名为“LogBookSystemUsers”的 table,我想在 EF Core 5 中设置许多功能。我几乎可以正常工作,但问题是我的 ID 列被命名为 SystemUserId
和 LogBookId
但是当 EF 进行连接时,它会尝试使用 SystemUserID
和 LogBookID
。这是我当前的配置代码:
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity(x =>
{
x.ToTable("LogBookSystemUsers", "LogBooks");
});
我试过这个:
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));
但这只是添加了两个新列,而不是设置当前列的名称。
首先是所有数据库。我不想对多对多 table 使用 class 因为我在我的项目中一直这样做而且我不想要一堆无用的 classes漂浮着。有什么想法吗?
有趣的错误,考虑将其发布到 EF Core GitHub 问题跟踪器。
根据您的想法,应该按照您的尝试去做
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));
当相关实体 PK 属性 被称为 ID
.
时,它适用于除 {RelatedEntity}Id
之外的任何其他 FK 属性 名称
作为解决方法,直到它得到修复,在配置关系之前明确定义所需的连接实体属性:
// add this
modelBuilder.SharedTypeEntity<Dictionary<string, object>>("LogBookSystemUsers", builder =>
{
builder.Property<int>("LogBookId");
builder.Property<int>("SystemUserId");
});
// same as the original
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));
我有一个名为“LogBookSystemUsers”的 table,我想在 EF Core 5 中设置许多功能。我几乎可以正常工作,但问题是我的 ID 列被命名为 SystemUserId
和 LogBookId
但是当 EF 进行连接时,它会尝试使用 SystemUserID
和 LogBookID
。这是我当前的配置代码:
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity(x =>
{
x.ToTable("LogBookSystemUsers", "LogBooks");
});
我试过这个:
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));
但这只是添加了两个新列,而不是设置当前列的名称。
首先是所有数据库。我不想对多对多 table 使用 class 因为我在我的项目中一直这样做而且我不想要一堆无用的 classes漂浮着。有什么想法吗?
有趣的错误,考虑将其发布到 EF Core GitHub 问题跟踪器。
根据您的想法,应该按照您的尝试去做
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));
当相关实体 PK 属性 被称为 ID
.
{RelatedEntity}Id
之外的任何其他 FK 属性 名称
作为解决方法,直到它得到修复,在配置关系之前明确定义所需的连接实体属性:
// add this
modelBuilder.SharedTypeEntity<Dictionary<string, object>>("LogBookSystemUsers", builder =>
{
builder.Property<int>("LogBookId");
builder.Property<int>("SystemUserId");
});
// same as the original
modelBuilder.Entity<SystemUser>()
.HasMany(x => x.LogBooks)
.WithMany(x => x.SystemUsers)
.UsingEntity<Dictionary<string, object>>("LogBookSystemUsers",
x => x.HasOne<LogBook>().WithMany().HasForeignKey("LogBookId"),
x => x.HasOne<SystemUser>().WithMany().HasForeignKey("SystemUserId"),
x => x.ToTable("LogBookSystemUsers", "LogBooks"));