T4MVC: имя области в URL не строчное - PullRequest
2 голосов
/ 03 марта 2011

Добрый день!

У меня есть следующая ссылка:

<%: Url.Action(MVC.Areas.Manage.Feedback.Index()) %>

И он генерируется как /Manage/feedback. Имена действий и контроллеров указаны строчными буквами, а название области - нет.

Я использую последнюю версию T4MVC 2.6.43 с такими настройками:

// Choose whether you want to include an 'Areas' token when referring to areas.
// e.g. Assume the Area is called Blog and the Controller is Post:
// - When false use MVC.Blog.Post.etc...
// - When true use MVC.Areas.Blog.Post.etc...
static bool IncludeAreasToken = true;

// If true, use lower case tokens in routes for the area, controller and action names
static bool UseLowercaseRoutes = true;

Заранее спасибо!

1 Ответ

2 голосов
/ 03 марта 2011

Ах, моя вина, я должен изменить это на строчные буквы в ManageAreaRegistration.cs

public override void RegisterArea(AreaRegistrationContext context)
{
    context.MapRoute(
        "Manage_default",
        "manage/{controller}/{action}/{id}",
        new { action = "Index", id = UrlParameter.Optional }
    );
}
...