WebApi プロジェクトがあり、それに領域を追加しようとしています。
新しい領域を webapi プロジェクトと mvc4 アプリケーションに追加するときに、何か別のことを行う必要がありますか?
次のような単純なエリア登録があります
public class MobileAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Mobile";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Mobile_default",
"Mobile/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
みたいなコントローラー
public class BusinessDetailsController : BaseController
{
public string Index()
{
return "hello world";
}
public HttpResponseMessage Get()
{
var data = new List<string> {"Store 1", "Store 2", "Store 3"};
return Request.CreateResponse(HttpStatusCode.OK, data);
}
}
しかし、私は決してAPIに到達できません。私は愚かなことをしていますか、それとも実行する必要がある webapi の追加のステップがありますか?