可能重复:
Enums with EF code-first - standard method to seeding DB and then using?
是否有一种使用代码首先映射枚举的简单方法。
这是我的poco类..其中FooStatus是枚举。初始化数据库时,不会创建该列。
public class Foo
{
public int Id { get; set; }
[Required]
public string Title { get; set; }
[Required]
public string Description { get; set; }
public int CreatorId { get; set; }
public Creator Creator { get; set; }
public FooStatus Status { get; set; }
public int Applications { get; set; }
}