DEV Community

Rlogical Techsoft Pvt Ltd
Rlogical Techsoft Pvt Ltd

Posted on

Types of routing in ASP.NET MVC

The procedure of mapping inbound requests to application logic residing in methods and controllers is considered to be routing in ASP.NET Core. It is responsible for incoming mapping requests based on the routes configured by you in your application, and it is possible to set some particular configurations for every route, such as message handlers, default values, constraints, and so forth.

You will come across several ways for controlling routing in the ASP.NET Core application services. Amongst these, the two most common ways happen to be conventional routing and attribute-based routing.
Conventional routing

Once a fresh ASP.net Core MVC application is created by making use of the default template, the app configures a default routing. For this, we will create a project to examine this.

Once you have used the default ASP.net Core MVC template for creating a new project, we will consider looking at the startup.cs class. It is shown that the app has configured the default routing: for C#

app.UseEndpoints(endpoints =>

{

endpoints.MapControllerRoute(

name: “default”,

pattern: “{controller=Home}/{action=Index}/{id?}”);

});

We make use of the MapControllerRoute() process for creating a route by providing the name default.

The default route template is configured by MVC as {controller=Home}/{action=Index}/{id?}. This is going to match the Index() method with an optional parameter id in HomeController. It can likewise match a URL path such as /Books/Details/5 and is going to extract the route values by tokenizing the path. MVC will try to find out a controller with the name of BooksController and pass the id parameter as 5 for running the Details() action method.

After running the application, we will be placing a breakpoint in the HomeController’s Index() method. It is found that this process is executed automatically.

Following this, we will modify the default route. For this, we’re going to add a new controller named BooksController with an optional parameter id and an action method Details(). The parameter id happens to be:

public class BooksController : Controller

{

public IActionResult Details(int id)

{

ViewBag.Id = id;

return View();

}

}

Following this, we will be creating a view for the action method Details():

@{

ViewData[“Title”] = “Details”;

int id = ViewBag.Id;

}

Details

Book Id : @id

Next, we will be modifying the default route within the startup class:

app.UseEndpoints(endpoints =>

{

endpoints.MapControllerRoute(

name: “default”,

pattern: “{controller=Books}/{action=Details}/{id?}”);

});

Next, we will run the application again. It is found that the call goes to BooksController’s Details() method by default.
Multiple routes

Multiple routes can be added inside UseEndpoints() simply by calling MapRoute() several times. In this way, we will be capable of defining multiple conventions or adding routes dedicated to a particular action:

app.UseEndpoints(endpoints =>

{

endpoints.MapControllerRoute(

name: “blog”,

pattern: “blog/{*article}”,

defaults: new { controller = “Blog”, action = “Article” });

endpoints.MapControllerRoute(

name: “default”,

pattern: “{controller=Books}/{action=Details}/{id?}”);

});

Here, the blog route happens to be a dedicated conventional route that makes use of the traditional routing system. Action and controller will have the default values only since they are not going to appear as parameters in the route template. In this way, the route will be mapping to the BlogController.Article() action method at all times.

It will be a sensible idea to indicate a route name while making the routes. This will provide the route with a logical name that can be used for URL generation.

GET to know more here about types of routing in ASP.NET MVC: https://rlogicaltech.medium.com/what-are-the-types-of-routing-in-asp-net-mvc-5525df09071c

Top comments (0)