I have the following code in my HomeController:
public ActionResult Edit(int id) { var ArticleToEdit = (from m in _db.ArticleSet where m.storyId == id se
Try making your property nullable.
public DateTime? Time{ get; set; }
Worked for me.