私のプロジェクトには2つのエリアがあります。私はここにいくつかのソースを発見した「ホーム」というコントローラーと一致する複数のタイプが見つかりました - 異なる2つのエリア
Multiple types were found that match the controller named 'Home'. This can happen if the route that services this request ('{controller}/{action}/{id}') does not specify namespaces to search for a controller that matches the request. If this is the case, register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter.
The request for 'Home' has found the following matching controllers:
BaseAdminMVC.Areas.BaseAdmin.Controllers.HomeController
BaseAdminMVC.Areas.TitomsAdmin.Controllers.HomeController
::私は、プログラムを実行すると、私はこのエラーを取得Multiple Controller name
をしかし、私はそれだけで一つの領域のために働くと思います。
私の場合、私は異なる分野に2つのプロジェクトがあります。誰かが問題を解決するために何をすべきか教えてください。
ここGlobal.asax
ファイルです:
public static void RegisterRoutes(RouteCollection routes)
{
string[] namespaces = new string[] { "BaseAdminMVC.Areas.BaseAdmin.Controllers", "BaseAdminMVC.Areas.TitomsAdmin.Controllers"};
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces
);
}
ところで、私はまた、Area
フォルダの外( "HomeController
")をコントローラいます。これは2つのプロジェクトBaseAdmin
とTitomsAdmin
へのリンクを提供しています。
私は、このソリューションを試してみましたが、それでもは動作しません:事前に
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
routes.MapRoute(
"BaseAdmin",
"BaseAdmin/{controller}/{action}",
new { controller = "Account", action = "Index" },
new string[] { "BaseAdminMVC.Areas.BaseAdmin.Controllers" }
);
routes.MapRoute(
"TitomsAdmin",
"TitomsAdmin/{controller}/{action}",
new { controller = "Home", action = "Index" },
new string[] { "BaseAdminMVC.Areas.TitomsAdmin.Controllers" }
);
感謝を!
編集の再実行:デフォルトルートを下に(最後の場所に)移動する必要があります。ここでは順序が重要です。 –
@HenkHoltermanまだ動作しませんでした。 – fiberOptics
そして、 "うまくいかない"という意味はまだ分かりません。 –