如何首先在Entity Framework代码中重命名自动生成的关联表?

时间:2012-12-11 19:36:16

标签: entity-framework-4.1 ef-code-first

我知道如何根据映射到它们的类在OnModelCreating()方法中命名表并指定模式。即,

modelBuilder.Entity<Customer>().ToTable("Customers", schemaName: "Ordering");

但是导致自动生成的关联表的多对多关系怎么办?

1 个答案:

答案 0 :(得分:0)

没关系,找到了答案:

Mapping association tables in EF 4.1 code first

由于某些原因,我在原始搜索现有帖子时没有遇到这个问题。