我们使用EF 5RC,首先进行迁移.我觉得这应该是一个容易解答的问题(我希望).有没有办法找出自动迁移尝试做什么.
我通过Add-Migration PS命令添加了一个迁移.
我已经调用了Update-Database,所有这一切似乎都与迁移一致.
现在 – 我正在像我一般正在运行更新数据库,但出现以下错误:
PM> update-database -Verbose Using StartUp project 'Web'. Using NuGet project 'DataAccess'. Specify the '-Verbose' flag to view the sql statements being applied to the target database. Target database is: 'UserGroup' (DataSource: (localdb)\v11.0,Provider: System.Data.sqlClient,Origin: Configuration). No pending code-based migrations. Applying automatic migration: 201206301526422_AutomaticMigration. Automatic migration was not applied because it would result in data loss.
注意,我添加了-Verbose选项,并且我再次尝试使用-Script.但我不知道我们正在迁移到哪里什么sql或者它认为会导致数据丢失.
我不想在这里简单地启用“允许数据丢失”,但我试图了解如何解决这些迁移问题.
先谢谢你!