I have a custom model binder to get data from session, but I also would like to use the default binder from time to time.
Is it possible to choose model binder in action signature instead of using UpdateModel?
Example
public ViewResult MyAction(Cart useSessionBinder, Cart useFormData)
{}
Thanks