Is it possible to implement SQL Session State with ASP.NET MVC without the addition of code to our webapp? We need this to be a transparent switch from In-proc to SQLServer.
Is it possible to implement SQL Session State with ASP.NET MVC without the addition
Share
No code is required in your application to switch from in process to SQL session state. This is controlled from with your applications web.config file. The one thing you will have to do is run the necessary scripts to create the ASP.NET Session database and tables. See this Microsoft support article for more details. This is the same for web forms as well as MVC.