c# - Controller - ASP.NET MVC - Does more than one instance of a controller get created per App-Domain? If so under what conditions? -
does more 1 instance of controller created per app-domain? if under conditions?
a new instance of controller created each request mvc, may end multiple instances running on different threads.
there nothing stopping creating multiple instances yourself.
the controller should stateless.
Comments
Post a Comment