Entity Framework で既定のスキーマ名を変更する


ASP.NET MVC5で、PostgresでASP.NET Identityを使用する場合に、
既定のスキーマ名をdbo から public 変更する。

MyContext.cs
public class MyContext : DbContext
{
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.HasDefaultSchema("public");
    }
}