I have 2 projects in my solution:
Server.API
This is a web api project. The web.config has a section for <connectionStrings>, and there's one connection string available.
Server.Model
This is where 2 models (database first) are located. The app.config also has a section for <connectionStrings>, and there are 2 connection strings, one for each model.
The initial solution was developed on one machine. Now I'm using a second machine.
When I try to update the model from the database (right-click in EF designer), I get to choose my data connection, and in the list of available connections, I get the one in the Server.API!
How does the designer know about this connection, and why doesn't it list the 2 connections that are the Server.Model project where the actual .edmx files are located?