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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top