現在、これは機能します:
/api/Company/1089?children=branches
コントローラ:
public IEnumerable<Branch> Get(int id, string children)
私のURLをこれにしたい:
/api/Company/1089/branches
ルートの設定方法がわかりません。
これは機能しません:
routes.MapRoute(
name: "cb",
url: "{controller}/{action}/{id}/{children}",
defaults: new { controller = "Company", action = "Get",
id = UrlParameter.Optional, children = UrlParameter.Optional }
);