ASP.NET MVC 5 Model-Binding Edit View
I cannot come up with a solution to a problem that's best described verbally and with a little code. I am using VS 2013, MVC 5, and EF6 code-first; I am also using the MvcControllerWithContext scaffold, which generates a controller and views that support CRUD operations. Simply, I have a simple model that contains a CreatedDate value: public class WarrantyModel { [Key] public int Id { get; set; } public string Description { get; set; } DateTime CreatedDate { get; set; } DateTime LastModifiedDate { get; set; } } The included MVC scaffold uses the same model for its index, create, delete,