I have an EF database generated via Code First method. I manually changed the database through SQL Managment console. I added respectivly the tables I had added to the table on database. Now I get errors and EF is trying to update my DB. How can I change it so it wouldn't try to update it? I can't update it through EF it's too much sql code.
The error message is:
Unable to update database to match the current model because there are pending changes and automatic migration is disabled. Either write the pending model changes to a code-based migration or enable automatic migration. Set DbMigrationsConfiguration.AutomaticMigrationsEnabled to true to enable automatic migration.