I have a VS2012 MVC4 solution where I test Web API Controllers.
I successfully tested the GET, POST, PUT but the DELETE still got me an http 404 error. When I set a
Ran across the 404 running on Mac using Dotnet Core.
In my case I changed the attribute annotation from HttpDelete to HttpDelete("{id}")
HttpDelete
HttpDelete("{id}")