开启codefirst迁移命令:
Enable-Migrations -ContextTypeName BlogEntities
BlogEntities(上下文,继承DbContext的那个类)
更新数据库命令:
Update-Database -Verbose
新增变更类文件命令:
Add-Migration AddBolg
AddBolg(生成的文件名)
自动数据迁移:
将Configuration的AutomaticMigrationsEnabled设置为true
当设置自动数据迁移之后,放模型变更只需要执行Update-Database -Verbose命令
注意:模型有删减的话需要先执行Add-Migration命令再执行Update-Database -Verbose命令
注意,当执行Enable-Migrations -ContextTypeName BlogEntities命令是报如下错误时需要使用NuGet添加EntityFramework:
本文出自 “程序猿的家--Hunter” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1863865
原文地址:http://962410314.blog.51cto.com/7563109/1863865