I\'m trying to navigate to a page which its URL is in the following format: localhost:xxxxx/User/{id}/VerifyEmail?secretKey=xxxxxxxxxxxxxxx
I\'ve added a new route i
In my case I was seeing this because I had two controllers with the same name:
One for handling Customer orders called CustomersController
and the other for getting events also called CustomersController
I had missed the duplication, I renamed the events one to CustomerEventsController
and it worked perfectly