ASP.NET Core Application Lifecycle

折月煮酒 提交于 2019-12-02 16:46:34

Here are few links I found related to ASP.NET Core lifecycle though this is not complete description and I'm searching for more. ASP.NET Core apps are console apps running on Kestrel so you can assume there are significant differences to what @mybirthname posted and it relates to ASP.NET 5 (and below).

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/startup

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/middleware

http://developer.telerik.com/featured/understanding-asp-net-core-initialization/

I'd suggest going through all the docs within Core docs Fundamentals section.

If you have membership of Pluralsight, Alex Wolf has great course on it, He also had same course for previous versions of MVC so if you watch both in order it will give you really good understanding of how Request Life Cycle was working in MVC 5 and before and how it works now with MVC Core and what's difference between both.

Pluralsight also offers 7 days free trial membership if you want to try it out.

MVC 5 and before: The MVC Request Life Cycle

MVC Core: ASP.NET Core: The MVC Request Life Cycle

Hope it helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!