I\'m trying to set up my dbContext so that it can handle multiple schemas in a single Oracle database. I didn\'t want one monolithic dbContext file so I\'ve come up with the
You can specify schema per table via Table attribute.
Table
[Table(nameof(MyTable1), Schema = "Schema1")] public class MyTable1 { } [Table(nameof(MyTable2), Schema = "Schema2")] public class MyTable2 { }