数据库迁移在sqlserver 2012中不起作用

时间:2016-01-12 12:50:40

标签: sql-server asp.net-mvc ef-migrations

数据库创建和迁移在sql 2008中有效,但在sql2012中不起作用。

错误:“'ePoll.Answer'表中的列'IpAddress'属于无效的类型 用作索引中的键列。“

模型中的概念:

 [MaxLength(39)]
 [Index(IsClustered = false)]
 public string IpAddress { get; set; }

1 个答案:

答案 0 :(得分:0)

当我使用[必需]属性时,数据库迁移会起作用。

 [Required]
 [MaxLength(39)]
 [Index(IsClustered = false)]
 public string IpAddress { get; set; }