I upgraded from MVC4 beta to RC and the latest autofac. The following action was binding properly, but now both parameters are null. I see they changed things about the Fo
When you want to avoid using a DTO object, try this:
[HttpPost] RedirectModel MyAction(dynamic value1, dynamic value2) { string sValue1 = value1; string sValue2 = value2;