How to implement OWIN and Katana in MVC 5Application

i am updating the application from mvc4 to mvc5. I am using the first approach for Entity Framework code in my application. I got confused in OWIN and Katana. how I implement this concept in my mvc5 web application. please guide me.

thanks

+4
source share
2 answers

ASP.NET MVC was not designed to work with OWIN. These are the ASP.NET Web API and SignalR, which were created for OWIN and provide a specific host. Therefore, you cannot implement these concepts in an ASP.NET MVC application.

+8
source

MVC-, , OWIN NancyFx FubuMVC.

+2

Source: https://habr.com/ru/post/1525588/


All Articles