asp.net-mvc – 如何降级Visual Studio 2012中的Entity Framework 5迁移?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何降级Visual Studio 2012中的Entity Framework 5迁移?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到,当我使用加载迁移创建代码第一个数据库迁移时,它会生成一个Down()方法以及一个Up()方法.

如何告诉我的数据库降级?

解决方法

几乎放弃对谷歌的研究,我设法从这里找到这个报价:

> http://msdn.microsoft.com/en-gb/data/jj591621.aspx#specific

哪个指定:

Let’s say we want to migrate our database to the state it was in after running our AddBlogUrl migration. We can use the –TargetMigration switch to downgrade to this migration.

Run the Update-Database –TargetMigration: AddBlogUrl command in Package Manager Console.
This command will run the Down script for our AddBlogAbstract and AddPostClass migrations.

If you want to roll all the way back to an empty database then you can use the Update-Database –TargetMigration: $InitialDatabase command.

原文链接:https://www.f2er.com/aspnet/250185.html

猜你在找的asp.Net相关文章