我是 EF5 Code First 的新手,在开始工作项目之前,我正在修改概念验证。
我最初创建了一个看起来像的模型
public class Person {
public int Id { get; set; }
public string FirstName { get; set;}
public string Surname {get;set;}
public string Location {get;set;}
}
我使用我放在顶部的一个小 MVC 应用程序添加了一些记录。
现在我想将 Location 列更改为枚举,例如:
public class Person {
public int Id { get; set; }
public string FirstName { get; set;}
public string Surname {get;set;}
public Locations Location {get;set;}
}
public enum Locations {
London = 1,
Edinburgh = 2,
Cardiff = 3
}
当我添加新的迁移时,我得到:
AlterColumn("dbo.People", "Location", c => c.Int(nullable: false));
但是当我运行 update-database 时出现错误
Conversion failed when converting the nvarchar value 'London' to data type int.
迁移中有没有办法在运行alter语句之前截断表?
我知道我可以打开数据库并手动执行,但是有更聪明的方法吗?