0
我創建了一個自定義的Route
和Global.asax
這樣註冊它:ASP.NET MVC - 如何註冊自定義路由?
routes.Add(
null,
new SeoRoute(
"foo/{id}/{title}",
new { controller = "Foo", action = "Details" }
));
由於我在我的應用程序中使用Areas
,我必須設置Namespaces
每個Route
。
隨着定期航線,我不喜歡這樣寫道:
routes.MapRoute(
null,
"foo",
new { controller = "Foo", action = "Index" },
new string[] { "Boo.Web.Controllers" }
);
但我怎麼能自定義路線設置namespaces
?
任何幫助將不勝感激!