entity-framework – EF CTP5映射具有不同列名的主键

Property有一个名为HasColumnName的流畅方法. HasKey失踪了.在CTP4中,可以通过MapSingleType指定不同的列名,但如果我尝试使用Map(替换了MapSingleType),则它不起作用.有任何想法吗? 最佳答案 这不起作用吗?

modelBuilder.Entity<Institutes.Institute>()
    .HasKey(e => e.Id)
    .ToTable("Institutes", "core");

modelBuilder.Entity<Institutes.Institute>().Property(e => e.Id)
    .HasColumnName("InstituteID");
点赞