2

重複の可能性:
EF code-first の列挙型 - 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