Is there a way to pass the complete model from the view back to the controller (without using JSON please)?
My model is a list e.g.
List<ExmapleClass>
I want to be able to pass it back to the controller, sort, then pass it back to the view to be displayed, so that I don't have to go back to the database to get the original data.
I guess having the list as a (class) member variable in the constructor will eliminate the need to pass the model back and forth, but do I have other options?