An in-development ASP.Net MVC app that was working fine until today has now started throwing the following error:
The context is being used in Code First mode with code that was generated from an EDMX file for either Database First or Model First development.
The data layer of this app was done completely in Code-first. There are not any EDMX files of any sort involved. I am using Migrations.
My connection string is
<add name="MicroContentContext"
connectionString="Data Source=MdDB;
Initial Catalog=MyCaatalog;
Integrated Security=True;MultipleActiveResultSets=True;"
providerName="System.Data.SqlClient" />
What has gone wrong and what can I do to fix it?