Completed
Attribute Based Routing
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
ASP.NET Core 5.0 MVC - CRUD Operations and Entity Framework Core
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 What we will build in this video
- 3 Intro to the section
- 4 The Tools you will need
- 5 Introduction to .NET Core
- 6 Creating an ASP.NET Core Project
- 7 Project File and Program File
- 8 Dependency Injection
- 9 Startup file, .Net Core Pipeline and Middleware
- 10 Routing in MVC
- 11 Launchsettings, AppSettings, WWWRoot
- 12 What exactly is MVC
- 13 Shared Folder as well as ViewImports and ViewStart
- 14 Intro To the Controller Chapter
- 15 Creating your own controller in ASP.NET Core MVC
- 16 Creating your own view in ASP.NET Core MVC
- 17 Routing Explained
- 18 Conventional Routing
- 19 Attribute Based Routing
- 20 Controller Actions
- 21 Pass Values to Actions
- 22 Action Return Types
- 23 Intro Chapter Models
- 24 Model in MVC
- 25 Code First Approach and Migration
- 26 Setting up the Connection String
- 27 Setting up DBContext as Well es Entity Framework Core
- 28 Setting up DBContext in our startup File in ASP.NET Core MVC
- 29 Push our items to the Database, Migrations and checking the DB
- 30 Add a controller to our borrowed items
- 31 Passing Data to the Controller in ASP.NET Core MVC
- 32 Displaying our Data using HTML and Bootstrap
- 33 Add new columns to Database
- 34 Create Page and Button editing
- 35 Designing the create item page
- 36 Creating the Entry in the Database
- 37 Challenge - Expenses
- 38 Challenge Expenses - Solution
- 39 Server Side and Client Side validation
- 40 Delete Entry in Database
- 41 Update Entry in Databse