Understanding Flow of MVC

 First request will come to controller, controller will get data from Model( if there is a code to do so), after getting data from model, this data will be sent to view by the controller.

Model will never talk to view, controller will always act as bridge between these two guys

Comments

Popular posts from this blog

Understanding Async and Await

Understanding ref and out + C#7.0 features