In ASP.NET 4.6
or lower there were differences between Web Api and Asp.Net MVC. controller
, for example, can inherit from controller
or ApiController
. However, with the arrival of Asp.Net 5
, it will not have this separation, the difference will be between AddMVC
and AddWebApiConventions
in services, as said in this article .
Have you really unified the two and if that's the only difference?