Questions about routing within ASP.
I created a project using the default ASP.NET Core MVC template. I would like to also create a RESTful …
c# asp.net-core asp.net-core-mvc asp.net-core-webapi asp.net-core-routingI'm trying to update an entry in the game table. However, my PUT request in ASP.NET never seems to …
c# angular rest asp.net-core asp.net-core-routingI'm trying create an additional Get method on a web api but the return is 404 ( method not found ). At my …
c# asp.net-core asp.net-core-webapi asp.net-core-routingLooking for best practices when working with nested routes in .NET Core MVC. Let's say CampusController.cs works with a …
c# asp.net-core-mvc .net-core asp.net-core-routingI am creating a web api using mvc 6. now i am trying to get a element from my db. the …
c# asp.net-core asp.net-core-routingI am migrating a project to asp net core, but I could not configure these routes, i am using attributes …
c# asp.net-core asp.net-core-2.0 asp.net-core-routingI have a super simple controller with 2 methods: public IActionResult Users(long id) { return Json(new { name = "Example User" }); } public …
c# asp.net-core asp.net-core-mvc asp.net-core-routingIn Asp.net WebApi2 when api/values/9b858599-7639-45da-acd6-a1323fb019b5 is called get Action is invoked. …
c# asp.net-core asp.net-core-2.2 asp.net-core-routingI am trying to post a request to my controller just to post some data, but it is not working. …
c# asp.net-core-webapi asp.net-core-3.0 asp.net-core-routing