I have a code first database in a WCF project. I use it by calling
using (var db = new DbContext())
I have another console application. I've added a reference to the WCF project. When I use
using (var db = new DbContext())
it creates a new database in the database next to the original database.
Database Database.DbContext
How do I get them to use the same database?