在代码中首先映射枚举

时间:2012-08-08 14:36:02

标签: c# enums ef-code-first

  

可能重复:
  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; }

}

0 个答案:

没有答案