Implementing and Testing ASP.NET Web API Controllers
Modifying the Web API Route Configuraton By default, ASP.NET Web API uses a routing convention that maps HTTP methods (GET, POST, PUT, DELETE) to controller actions without requiring an explicit action name in the URL. This convention-based routing can become problematic when you need multiple opera...