这是我要问的代码示例。
public ActionResult Action()
{
object person = new Person(); //It works if i replace object with Person
UpdateModel(person); //this does not update person because of "object" declaring type
return View();
}
如果我在运行时确定模型类型,那么更新模型的最佳方法是什么?