I understand that I can use @Html.HiddenFor(m => m.parameter)
and when the form is submitted, that parameter will be passed to the controller. My model has many properties.
Is there a shorter way of passing the entire model at once to the controller or must I do it one by one each time?