Entity Framework - Start Over - Undo/Rollback All Migrations

后端 未结 5 651
忘了有多久
忘了有多久 2020-12-12 09:18

For some reason, my migrations appear to have been jumbled/corrupted/whatever. I\'m at the point where I just want to start over, so is there a way to completely undo all m

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-12 09:56

    Update-Database -Migration 0
    Remove-Migration
    

    The documentation is here: https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/powershell#update-database and here: https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/powershell#remove-migration

提交回复
热议问题