你如何明确地告诉EF一个表位于特定模式中?
例如,AdventureWorks数据库定义了Production.Product表.使用OnModelCreating方法时,我使用以下代码:
protected override void OnModelCreating(DbModelBuilder modelBuilder) { EntityTypeConfiguration<Product> config = modelBuilder.Entity<Product>(); config.HasKey(p => p.ProductID); config.Property(p => p.Price).HasColumnName("ListPrice"); config.ToTable("Product"); }
但是,当它运行时,它会说它的对象名称无效:dbo.Product.
我试过了:
config.ToTable("Production.Product"); //and config.HasEntityName("Production");
但两者都失败了.
解决方法
ToTable有重载版本,它接受两个参数:表名和模式名,所以正确的版本是:
config.ToTable("Product","Production");