My company uses different databases depending on which stage of development a project is in. Currently I'm trying to push for adoption of Entity Framework + LINQ but have hit a stumbling block when asked how this would work across our multiple environments.
They are under the impression it will have to be manually changed for each environment and will thus take forever to deploy.
How do I configure EF Database-First to use a different connection on dev, test, and production servers?
Can I set some sort of variable? Is there an option I missed?