标签: entity-framework-4.1 ef-code-first
我知道如何根据映射到它们的类在OnModelCreating()方法中命名表并指定模式。即,
modelBuilder.Entity<Customer>().ToTable("Customers", schemaName: "Ordering");
但是导致自动生成的关联表的多对多关系怎么办?
答案 0 :(得分:0)
没关系,找到了答案:
Mapping association tables in EF 4.1 code first
由于某些原因,我在原始搜索现有帖子时没有遇到这个问题。