Working with a model first approach on Entity Framework 4, I'd like to switch the database from real SQL (Data.SQLClient) to SQL CE (Data.ServerCe) back and forth.
I know how to do it manually:
Change the provider from System.Data.SqlServerCe.3.5 to System.Data.SqlClient
- change the connection string of the Model Container/Context
- change in the .edmx file (the Schema Namespace="Model1.Store" provider="..." attribute)
What I can't figure out is how I could make that change at build/compile time, so I could easily switch between SQLClient and SQLServerCE based on a configuration.
Any other way how to achieve the same result would be appreciated too! (have one model where the data source can be switched between SQL and SQL CE)