WebAPI – Multiple actions were found that match the request
WebAPI looks very suitable for exposing RESTful services for any web based application. So, during a recent implementation of WebAPI on a project I was receiving the Multiple actions were found that match the request exception.
To get some context below was my setup:
The route configuration:
public static class WebApiConfig { public static void Register( HttpConfiguration config ) { config.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{id}", defaults: new { id = RouteParameter.
[Read More]