I have an .NET MVC application which utilizes entity framework and a 3rd party provider to interact with an Oracle database. I need to be able to choose among two connection strings based on who is using the application. The 3rd party provider assumes it will find a connection string in the app.config of the project in which in the entity data model resides which corresponds in name to the Entity Container Name.
The question: How can I set the connection string such that it will be present? If I use the EntityConnectionStringBuilder as outlined here before any calls are made to the database will it be equivalent to setting the connection string in app.config? IE will the Entity Framework stuff find what it is looking for?