Possible Duplicate:
What is the ‘page lifecycle’ of an ASP.NET MVC page, compared to ASP.NET WebForms?
In ASP.NET MVC, I cannot find anything in the numerous "page lifecycle" or "request lifecycle" articles I've read that touches on object disposal. In an action method, if I create a connection to a database (or maybe create a context to EF), does it ever get disposed if I don't explicitly called dispose?
I know that the model binding to the view can require an open connection still (especially if it's serving an EF object with associations) but does it then dispose of everything instantiated during the request? If so, can someone point this documented out to me please?