以下代码是否合理?
public ActionResult MyController()
{
using(var model=new MyControllerModel())
{
return View(model);
}
//does framework access model after this point?
//If so, I need to rethink
}
答案 0 :(得分:4)
框架在返回ActionResult
之后肯定会访问模型。 ActionResults
调用了Execute()
个方法来生成内容。