c# - ASP.net MVC 5 Integration with OWIN same as Web API -
for web api integration use following thing in asp.net mvc 5 template onwards.
app.userwebapi(configuration);
here plug web api owin pipe line.
is same thing possible mvc .
app.usemvc();
also owin , mvc use same routetable url configuration.
currently cannot host mvc app owin since mvc has dependency on system.web namespace restrict self hosting .
but can use fubumvc, nancy , simple.web etc
Comments
Post a Comment