MVC3 and Code First Migrations - “model backing the 'blah' context has changed since the database was created”

后端 未结 2 1504
北海茫月
北海茫月 2020-11-27 05:14

I started off my project by using Entity Framework Code First. When I was ready I uploaded my database and code to my host provider. Everything worked.

I need to add

相关标签:
2条回答
  • 2020-11-27 05:40

    From my experience that suggests that migration table is out of sync (even if your data isn't), and that's been part of the db schema now (since 4.3 I think - under system tables).

    There could be many reasons and ways to experience that error , but most of the time...

    The problematic part is some combination of manually backing/restoring the full database with code changes alongside - I'm not entirely certain as to why always.

    In short, even if Db-s are the same migration table data might not be - and hash comparison may fail (still full restore sounds like good enough - but you have 'two sides').


    What works for me is to use
    Update-Database -Script

    That creates a script with a 'migration difference',
    which you can manually apply as an SQL script on the target server database (and you should get the right migration table rows inserted etc.).

    If that still doesn't work - you can still do two things...

    1. Remove the migration table (target - under system tables) - as per http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-automatic-migrations-walkthrough.aspx comments in there - that should fail back to previous behavior and if you're certain that your Db-s are the same - it's just going to 'trust you',

    2. As a last resort I used - make a Update-Database -Script of the full schema (e.g. by initializing an empty db which should force a 'full script'),
      find the INSERT INTO [__MigrationHistory] records,
      just run those, insert them into the database,
      and make sure that your databases - and code match,

    that should make things run in sync again.

    (disclaimer: this is not a bullet proof to work at all times, you may need to try a few things given your local scenarios - but should get you in sync)

    0 讨论(0)
  • 2020-11-27 05:54

    I think in step 6 you need to run Update-Database -Verbose

    Also this link is very helpful for updating database in EF with Scaffolding http://www.asp.net/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-entity-framework-scaffolding-and-migrations

    0 讨论(0)
提交回复
热议问题