モデル バインディングはクエリ文字列でも機能しますか?
次のような get リクエストがある場合:
GET /Country/CheckName?Country.Name=abc&Country.Id=0 HTTP/1.1
次の CountryController のメソッドは、クエリ文字列からの値を持つ Id プロパティと Name プロパティを含む oCountry 引数を持ちますか?
public ViewResult CheckCountryName(Country oCountry)
{
//some code
return View(oCountry);
}
何らかの理由で、oCountry オブジェクトで Id を 0、Name を null として取得しています。何が欠けている ?