I\'ve finished building my blog using EF and Code First.
EF was running against my local SQL Express instance, with [DBO] schema.
Now i want to publish
EF will use dbo schema if you didn't configure the schema explicitly through data annotations or fluent API.
dbo
[Table("MyTable", "MySchema")] public class MyEntity { }
Or
modelBuidler.Entity().ToTable("MyTable", "MySchema");