Questions about routing within ASP.
How can I pass in multiple parameters to Get methods in an MVC 6 controller. For example I want to be …
c# asp.net-core asp.net-core-routingI read lot of topic about routes for API in Asp.net core but I cannot make it work. First, …
c# asp.net-core .net-core asp.net-core-webapi asp.net-core-routingI am creating a website using ASP.NET Core MVC. When I click on an action I get this error: …
c# asp.net-core asp.net-core-mvc asp.net-core-routingI notice that there are a bunch of similar questions out there about this topic. I'm getting this error when …
c# .net-core asp.net-core-webapi asp.net-core-routingI'm building a web api where I have one resourse that must have 3 get methods as follows: [HttpGet] [Route("{city}/{…
c# asp.net-core asp.net-core-routingI am trying to support multiple Get() methods per controller, as well as just specially named methods accessible through web …
c# asp.net-core-mvc asp.net-core-routingHow to create prefixed routing for MVC CRUD operation. I am working on an application that requires admin and front-end. …
c# .net-core asp.net-core-mvc asp.net-core-routingI've created a contact controller with that signature : public IActionResult Index(string id) Nothing fancy in the route table : app.…
c# asp.net-core asp.net-core-mvc asp.net-core-tag-helpers asp.net-core-routingI'd like to use url query parameter instead of path parameter using .net core API. controller [Route("api/[controller]/[action]")] …
asp.net-core asp.net-core-routingSo, I am playing around with Web API (ASP.NET Core 2) and having routing issues. I have several controllers such …
c# asp.net-core .net-core asp.net-core-webapi asp.net-core-routing