I was reading this tutorial http://www.asp.net/mvc/overview/older-versions/getting-started-with-aspnet-mvc3/cs/examining-the-edit-methods-and-edit-view
And found out this syntax
@Html.EditorFor(model => model.Title)
I just could not understand this.
I mean what is model
. Is this the model name in MVC 3 application. if it is then it should be incorrect because as seen from the tutorial it is not the name of the model in question.As can be seen from tutorial the name of the model is "Movie"
Any help will be appreciated