Handling of URLs and URL parameters in ASP.NET Core is done via Routing Middleware. That’s what Microsoft wants you to believe: Routes in ASP.NET Core provide capabilities of directing incoming requests to route handlers (controllers). What MS is not telling you, is that Routing also provides copious amounts of reasons to hate it. If you ever…