Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルにマップするクラスに基づいて、テーブルに名前を付け、OnModelCreating() メソッドでスキーマを指定する方法を知っています。すなわち、
modelBuilder.Entity<Customer>().ToTable("Customers", schemaName: "Ordering");
しかし、自動生成された連想テーブルになる多対多のリレーションシップはどうでしょうか?
気にしないで、ここで答えを見つけました:
最初に EF 4.1 コードで関連付けテーブルをマッピングする
何らかの理由で、既存の投稿の最初の検索ではこれに遭遇しませんでした。