我看过这篇文章并试图这样做
Autogenerate primary key (Guid) Entity Framework CTP5
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid CompanyID { set; get; }
但是我仍然收到错误
Identity column 'CompanyID' must be of data type int, bigint, smallint, tinyint, or decimal or numeric with a scale of 0, and constrained to be nonnullable.
这是我在包管理器控制台上运行Update-Database命令的时候。
答案 0 :(得分:3)
出现同样的问题,唯一有帮助的就是将数据库丢弃到初始空状态,删除所有迁移并使用正确的GUID密钥创建一个新的迁移:
Update-Database -TargetMigration:0
Add-Migration InitialCreate
Update-Database
我同意这不是最佳解决方案,但我可以接受,因为我几个小时前开始投影。