I'm trying to use EF 4.1 with Code First POCO objects against a legacy database. I have many similar databases all with the same schema, and I need to decide which one to connect to at runtime.
All the examples I've seen show to put your connection string in the App.config or Web.config. This won't work for me since I need dynamic behaviour.
What object/properties can I manipulate to control the DB settings for my DbContext?