Question

Let's say I have this action method in my ApplicationController

public ActionResult MyActionMethodName()
{
    ...
}

I want this (and all methods that doesn't have a specific route) method's route to be /application/my-action-method-name without manually specifying it. Some special route or package that can convert action methods names in PascalCase to dashed routes.

Is there something like that?

Was it helpful?

Solution

I found this project which is a NuGet package that will convert all action method names to lowercased-dashed-routes.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top