4
以下代碼是否理智?在asp.net mvc中,有一個IDisposable模型是否安全?
public ActionResult MyController()
{
using(var model=new MyControllerModel())
{
return View(model);
}
//does framework access model after this point?
//If so, I need to rethink
}
我一直都在想這件事,但我只是假設所有事情都是在處理之後,因爲返回視圖基本上是響應的結束。 – Omar 2010-01-27 01:01:59