将Action动作中传递的FormCollection转变成对应的实体,可以使用Controller的TryUpdateModel()方法. public ActionResult Create(FormCollection collection) { try { if (ModelState.IsValid) { var student = new Student(); //在这里转换 TryUpdateModel<Student>(student, collection); dalStud…
将Action动作中传递的FormCollection转变成对应的实体,可以使用Controller的TryUpdateModel()方法. [HttpPost] public ActionResult Create(FormCollection collection) { try { if (ModelState.IsValid) { var student = new Student(); //在这里转换 TryUpdateModel<Student>(student, collectio…