No connection string named 'MarketingEntities' could be found in the application config file
All the googling in the world came up with solutions that dont work for me.
Its a single project application, there is no
MyApp.Repository
or anything else, justMyApp
, so the solution to set the UI project as startup will not work for me.Ive deleted both
bin
andobj
folders, did a clean. cleared out temp (via ccleaner). Running the app works, no problem. Normally, id ignore this and move on but in this case, I cant because I need to design something....
What do?!
E: The code that calls the settings file
public partial class MarketingEntities : DbContext
{
public MarketingEntities() : base("name=MarketingEntities")
{
}
}