自动生成ID GUID数据类型实体框架

时间:2015-07-29 13:55:21

标签: c# sql-server entity-framework asp.net-mvc-5

我看过这篇文章并试图这样做

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命令的时候。

1 个答案:

答案 0 :(得分:3)

出现同样的问题,唯一有帮助的就是将数据库丢弃到初始空状态,删除所有迁移并使用正确的GUID密钥创建一个新的迁移:

  1. Update-Database -TargetMigration:0
  2. 删除所有迁移
  3. Add-Migration InitialCreate
  4. Update-Database
  5. 我同意这不是最佳解决方案,但我可以接受,因为我几个小时前开始投影。