In all MVC Diagrams i've seen, there is always a connection between the View and the Model, indicating that the View has access to the Model.
I just wonder: When does this apply? At the moment, I have my Controller Action taking in a Parameter from the QueryString, query the Model in order to get MyObjectViewData, and then return a View, passing in the MyObjectViewData. So essentially I have the Controller in between.
This seems to be the logical approach, but it does not fit the assumption that Model and View have business together.
What are typical situations where they interact without the Controller?