Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Implement OWIN and Katana in MVC 5Application

i upgrade my application from mvc4 to mvc5. i am using Entity Framework code first approach in my application. i am confuse about OWIN and Katana. how i implement these concept in my web mvc5 application. please guide me.

Thank you

like image 852
Ammar Avatar asked Dec 25 '22 13:12

Ammar


2 Answers

ASP.NET MVC was not designed to work with OWIN. It's the ASP.NET Web API and SignalR that were built for OWIN and provide specific host. So you cannot implement those concepts in an ASP.NET MVC application.

like image 126
Darin Dimitrov Avatar answered Jan 11 '23 10:01

Darin Dimitrov


So far the only MVC framweworks I have found that support OWIN are NancyFx or FubuMVC.

like image 27
Nick Avatar answered Jan 11 '23 12:01

Nick