2

可能重复:
使用 EF 代码优先的枚举 - 播种 DB 然后使用的标准方法?

有没有一种简单的方法来使用代码优先 EF 映射枚举。

这是我的 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; }

}
4

0 回答 0