Referencing schema names for tables in the Entity Framework
ToTable
has overloaded version which accepts two parameters: table name and schema name so correct version is:
config.ToTable("Product", "Production");
ToTable
has overloaded version which accepts two parameters: table name and schema name so correct version is:
config.ToTable("Product", "Production");