So, I'm using dotConnect for Oracle. I used the template and wizard to create a model of the database (Database first approach). We have multiple databases that a single application needs to reference and unfortunately the schema naming which contain the tables are not uniform across the other databases.
In the auto generated class in the Designer.cs
file I get:
[Table(Name = @"FMC_TP.EQUIPMENT")]
But considering which database connection the schema could be:
[Table(Name = @"FMC_DEV.EQUIPMENT"]
Is there a way to change the schema for the mapping at runtime?