作成したばかりのオブジェクトへの URL を取得しようとしています。
code = HttpStatusCode.Created;
String location = Url.Route("ApiRoute", new {@id = bp.Id, @controller = "ProfileController" });
Response.AppendHeader("Location", location);
ルートはこちら
routes.MapHttpRoute(
name: "ApiRoute",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
しかし、MVC3 から MVC4 に変更されたようです。
誰かがこれに光を当てることができますか?
ありがとう