How to change schema name on runtime for EntityManager

384 Views Asked by At

Our application connects to oracle. It should change schema name on runtime, otherwise it causes exception to connect to different schema. Current solution is to remove Schema="XXX" in edmx file before release. Do you have any better idea?

1

There are 1 best solutions below

0
On

DevForce itself doesn't provide anything to change the schema at runtime. You might be able to implement an EF IDbConnectionInterceptor to do this, although I haven't tried. Take a look at the docs for this interface, as well as some older tricks others have used with EF to change the Oracle schema at runtime.