https://github.com/cryptogru812/mvcmovie
ASP.NET Core MVC Tutorial
https://github.com/cryptogru812/mvcmovie
asp-net-core asp-net-mvc csharp
Last synced: 11 months ago
JSON representation
ASP.NET Core MVC Tutorial
- Host: GitHub
- URL: https://github.com/cryptogru812/mvcmovie
- Owner: cryptogru812
- License: mit
- Created: 2025-03-14T02:24:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-14T17:27:36.000Z (over 1 year ago)
- Last Synced: 2025-07-05T20:46:18.955Z (about 1 year ago)
- Topics: asp-net-core, asp-net-mvc, csharp
- Language: C#
- Homepage:
- Size: 1.03 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MvcMovie
ASP.NET Core MVC tutorial
1. Add a controller
2. Add a view
- Add a view
- Change views and layout pages
- Change the title, footer, and menu link in the layout file
- Passing Data from the Controller to the View
3. Add a model
- Add a data model class
- Add NuGet packages
- Scaffold movie pages
- Initial migration
4. Work with a database
- SQL Server Express LocalDB
- Seed the database
5. Controller actions and views
- Processing the POST Request
- Additional resources
6. Add search
- Add Search by genre
- Add search by genre to the Index view
7. Add a new field
- Adding a Rating Property to the Movie Model
8. Add validation
- Keeping things DRY
- Delete the previously edited data
- Add validation rules to the movie model
- Validation Error UI