How do I tell EF what to name the database and where to put it? If there is no connection string in the Web.Config, it tries to put it in the local SQLEXPRESS Server, but I want to put it out on a known SQL Server and name it what I want. Any suggestions?
|
feedback
|
|
Create a connection string in the app.config/web.config with the same name as the context and the EF will use that DB. Check here (scroll down to point 7). | |||
|
feedback
|
|
Alternatively you can set the name in your DbContext constructor. | |||
|
feedback
|
|
If you point your connection-string at an existing database then EF “code first” will not try and create one automatically. EF “code first” uses a convention where context classes by default look for a connection-string that has the same name as the context class. | |||
|
feedback
|
How to Use a Different Connection String Name with EFEF will use the name of the database in the connection string. When you want to decouple the name of your connection string from EF, you need to provide your connection string to the constructor. Example:
| |||
|
feedback
|