Ok, this is definitely my last question about Linq2DB! Maybe...
I've gotten through some of the learning curve with Linq2DB for a project that will work against DB2/iSeries data. One problem though is that while my code works against my test database just fine, in production it will need to point at different schemas for the same objects. For instance, a particular user class in one environment would have a table mapping like:
[Table(Schema="ABC", Name="USERS")]
in another environment it might look like:
[Table(Schema="XYZ", Name="USERS")]
I haven't quite figured out how I will approach this in production. Has anyone dealt with this before? Is there a way to do this with a DataContext? Or possibly by digging into the internals of the mapping? Any thoughts or ideas are appreciated!