I know how to set the schema for a table in my context but is there a way to set the default schema for all the tables in a context? i.e.
[Schema = "Ordering"]
public class MyContext:DbContext
{
public MyContext()
: base("name=ConnectionString")
{
}
public DbSet<Student> Students { get; set; }
}