かみそりビュー:
@using (Html.BeginForm("Move", "Details", new { dict= dictionary}, FormMethod.Post)) {
//table with info and submit button
//dictionary => is a dictionary of type <Sales_Order_Collected, string>
}
コントローラーのアクション:
[HttpPost]
public string Move(Dictionary<Sales_Order_Collected, string> dict) {
return "";
}
モデル辞書をコントローラーに渡す方法はありますか? 私のパラメータは常にnullだからです。