これは私のモデルです:
public class Course
{
public int Id { get; set; }
public string Title { get; set; }
public string Institute { get; set; }
public string Instructor { get; set; }
public string Duration { get; set; }
public Level Level { get; set; }
public Format Format { get; set; }
public DateTime Released { get; set; }
public string FileSize { get; set; }
public string Desciption { get; set; }
}
public enum Level
{
Beginner,
Intermediate,
Advanced
}
public enum Format
{
Avi,
Hd,
FullHd
}
public class CourseDb:DbContext
{
public DbSet<Course> Courses { get; set; }
}
EF テンプレートを使用して Scoffolding で新しいコントローラーを作成したい場合、EF5 を使用しているときにとフィールド
の両方が作成されません
。何が問題ですか?
あなたのアドバイスに感謝しますLevel
Format