My .Net MVC project has the below ApiController:
But the Swagger UI generates two methods:
Observe that the ActionName TestMethod1 is omitted(probably because there is only one HttpGet in this controller)
My .Net MVC project has the below ApiController:
But the Swagger UI generates two methods:
Observe that the ActionName TestMethod1 is omitted(probably because there is only one HttpGet in this controller)
This was due to the DefaultRoute not having the {action} in the path.
It should be like: