Implement actions
Let us work on the other http action methods
In the previous section we
Created basic MVC app with HelloWorldController to understand outright basics
Added a Movie model
Added a fake context (collection) for holding a few movies in a list
Scaffolded the index view for Movie model
Scaffolded minimal Controller with boiler plate code
Implemented the Index action method of the controller to return movie list from fake context
Let us now work on implementing and understanding other action methods and view required to maintain a list of movies.
Last updated