コードファースト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; }
}