I've been dabbling a bit recently with Entity Framework 5.0. The application that I'm writing currently uses a database on a development/testing server. Once the application is complete, though, it should be able to connect to multiple instances of the database on different servers. Basically, the same database will be on several different serves. They have the exact same layout, just different information contained within.
The user should be able to select which server they will access from a dropdown on the form. Using their choice, the program will connect to the correct database server.
So, I'm wondering what caveats I should keep in mind while attempting this? Is it feasible/doable to let the program choose a different database/server based on user input? Will I have any special considerations because of using EF 5.0?