Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer and Order Classes
In this video, you will learn the creation of the model classes: Customer and Order that map to the corresponding database tables. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Controllers Folder
This video discusses the Controller folder and its content (HomeController) when the project was created with the default Model-View-Controller project template. This clip is from the chapter "Coding Project Part 2: Consume the Web API...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Shared Folder
This video explains the views/shared folder and its contents. You will be aware of the functions of all the folder files and their importance in the project. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Inspect the wwwroot
This video covers the web root folder, wwwroot, created at the root of the project when you create an ASP.NET Core 3.1 project and use the MVC template. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create an ASP.NET Core MVC Project.
This video shows the creation of an ASP.NET Core 3.1 MVC project and you should be able to do the same thing after attending this video. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Creating the Customer Controller
This video walks through creating the Customer Controller in the Web API project. It uses the customer repository to associate the CRUD operations with the Controller action methods. This clip is from the chapter "Coding Project Part 1:...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Creating the Home Controller
At the end of this video, you will be able to customize a home controller that indicates the state of the API. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Registering in Startup Class
This video registers the repositories into the dependency container in the Startup class ConfigureServices() method. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create an Order Repository
An Order Repository class is created and initialized with the connection string and the logger object. GetAllOrders() method is created to list all orders from the Orders table in the SQL database. This clip is from the chapter "Coding...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Integrating Serilog for Web API Logging
This video explains the steps for integrating Serilog for Web API logging. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web Projects".This section explains how to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Edit the appsettings.json File to Include the Connection String
The appsettings.json file is modified to include a connection string to the database for communication. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web Projects".This...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the IOrderRepository Interface
The application uses a repository pattern, so in this video, an IOrderRepository interface is created to cater to the Order Table in the database. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the ICustomerRepository Interface
The application uses a repository pattern, so in this video, an ICustomerRepository interface is created. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Model Class
The Customer model is created in this video. The model is mapped to the corresponding Customer table in the database. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Stored Procedures for CRUD Operation
This video discusses all the CRUD stored procedures that are used for this application. You will understand and be able to write simple stored procedures for these CRUD operations. Stored procedure script is added as resource to generate...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the SQL Server Database Tables
We start analyzing a pre-existing Microsoft SQL Server database that was created for this application. You will understand the database table structure that will be used by the client application to carry out the CRUD operations....
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a Web API
In this video, an ASP.NET Core Web API project is created with ASP.NET Core web app empty template. This project will serve as the API for the MVC client. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Hidden Fields for State Management
In this video, you will learn, with code examples from a running project, to demonstrate state management with hidden fields. This clip is from the chapter "State Management in ASP.NET Core" of the series "ASP.NET 6.0 - Build Hands-On...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Query Strings for State Management
In this video, you will learn, with code examples from a running project, to demonstrate state management with query strings. This clip is from the chapter "State Management in ASP.NET Core" of the series "ASP.NET 6.0 - Build Hands-On...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - State Management (Session State)
In this video, you will learn, with code examples from a running project, to demonstrate state management with session state. This clip is from the chapter "State Management in ASP.NET Core" of the series "ASP.NET 6.0 - Build Hands-On...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Integrating Microsoft GitHub Repository Sample Code
This video explains the process of integrating the open-source Microsoft repository sample code available for learning purposes in Visual Studio 2019. At the end of this video, you are expected to integrate the model binding sample code...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Model Binding Introduction
At the end of this video, you will have a fairly good understanding of the model binding concept. This clip is from the chapter "Model Binding in ASP.NET Core" of the series "ASP.NET 6.0 - Build Hands-On Web Projects".This section...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware
In this video, you will learn how to combine multiple middleware in a middleware pipeline. Specific emphasis is given on WelcomePage and static file middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create Your Custom Middleware
This video walks through the steps to create a custom middleware. You are expected to be able to create your own simple custom middleware after going through the video. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of...