在asp.net mvc中,拥有IDisposable模型是否安全?

时间:2010-01-27 01:00:38

标签: c# asp.net-mvc

以下代码是否合理?

public ActionResult MyController()
{
    using(var model=new MyControllerModel())
    {
        return View(model);
    }
    //does framework access model after this point? 
    //If so, I need to rethink

}

1 个答案:

答案 0 :(得分:4)

框架在返回ActionResult之后肯定会访问模型。 ActionResults调用了Execute()个方法来生成内容。