相同的表名称不同的模式

时间:2014-05-27 11:36:34

标签: c# entity-framework ef-code-first database-schema database-migration

我的数据库中有以下表,所有表都具有相同的表名但不同的模式。

  • dbo.Versions
  • bpm.Versions
  • wf.Version
  • ...

所有x.Versions对Version表都有一个FK。

我已经从它创建了POCO类(这给了我类Version,Version1,.... - 我已经将classNames重命名为Version和BPMVersion,....但映射仍然存在于右表。

这是我映射到bpm.Versions

的BPMVersion映射的示例
// Primary Key
this.HasKey(t => t.Id);

// Properties
// Table & Column Mappings
this.ToTable("Version", "bpm");
this.Property(t => t.Id).HasColumnName("Id");
this.Property(t => t.VersionId).HasColumnName("VersionId");
this.Property(t => t.BPMId).HasColumnName("BPMId");

// Relationships
this.HasRequired(t => t.BPM)
    .WithMany(t => t.BPMVersions)
    .HasForeignKey(d => d.BPMId);
this.HasRequired(t => t.Version)
   .WithMany(t => t.BPMVersions)
    .HasForeignKey(d => d.VersionId);

创建迁移脚本时,我遇到以下异常: 实体类型'BPMVersion'和'Version'不能共享表'Versions',因为它们不在同一类型层次结构中,或者没有有效的一对一外键关系,并且它们之间具有匹配的主键。

我在互联网上发现了以下博客,它认为EF对于名称相同但架构不同的表存在问题(https://entityframework.codeplex.com/workitem/1641http://geekswithblogs.net/tonyt/archive/2013/07/02/153327.aspx

在没有重命名表名的情况下,有没有避免这个问题?

1 个答案:

答案 0 :(得分:4)

这与EF映射表名的方式有关。看起来这是EF中的一个错误。从EF 6.1开始,它仍然处于建议状态,可悲地具有低优先级。

详见:http://entityframework.codeplex.com/workitem/1641

更新:上面提到的EF WorkItem 1641已修复version 6.1.2