数据库创建和迁移在sql 2008中有效,但在sql2012中不起作用。
错误:“'ePoll.Answer'表中的列'IpAddress'属于无效的类型 用作索引中的键列。“
模型中的概念:
[MaxLength(39)]
[Index(IsClustered = false)]
public string IpAddress { get; set; }
答案 0 :(得分:0)
当我使用[必需]属性时,数据库迁移会起作用。
[Required]
[MaxLength(39)]
[Index(IsClustered = false)]
public string IpAddress { get; set; }