使用纯 POCO 进行代码优先迁移。
这是我的课:
[Table("Contact")]
public class Contact
{
public int Id { get;set; }
public string Name { get;set; }
public Prefix? Prefix { get;set; }//added this one then perform Add-Migration
}
public enum Prefix
{
Gen,
Dr,
Ms,
Mr,
Mrs,
Prof,
Rep,
Sen,
St
}
我添加了前缀枚举,但是在执行添加迁移时会忽略它?