ASP.NET MVC 4 property-renaming for posting
问题 Follwing convention(s) are given. Each Action has a single parameter of type BaseRequest with data depending on the Action . The ViewModel is always of type BaseResponse . What I'm trying to do is, that if a View contains a form, the POST -Action requires some sort of BaseRequest . How can I achieve correct-model binding as of the ViewModel is BaseResponse ? I already tried to add a property of XYZRequest in XYZResponse so I could bind like @Html.ChecBoxFor(m => m.RequestObject