Forum Discussion
ultimatesenthil
Dec 16, 2020Copper Contributor
Asp.net framework MVC 5 deployment considerations on Azure PAAS Web App Service
Dear All, We have our Asp.net MVC 5 Application running on OnPrem. Planning it move to PAAS Cloud. While doing this we have couple of questions 1. Share us the checklist which can opt for the MVC app...
LohithGN
Feb 23, 2021Copper Contributor
Hi, there is no checklist as such. If you have a MVC5 application - that means you are on .NET Full Framework. So when you want to deploy to Azure PaaS - you will need to select a Windows Workload. Your application being MVC has got nothing to do with anything special in Azure. Having said that - if you are using Session based storage heavily - well thats not particularly good when you move to Cloud. You move to cloud to get scalability and elasticity. So relying on session will not help you when you scale. So if your app uses SESSION data - move it to a centralized storage like SQL Server or REDIS. Thats the change you will need to make. ViewData, TempData are not SESSION storage. So you are good.
regards
Lohith
Technology Lead