Instructional Video7:28
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer and Order Classes

Higher Ed
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...
Instructional Video4:05
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Controllers Folder

Higher Ed
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...
Instructional Video3:42
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - The Shared Folder

Higher Ed
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...
Instructional Video5:33
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Inspect the wwwroot

Higher Ed
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...
Instructional Video3:08
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create an ASP.NET Core MVC Project.

Higher Ed
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...
Instructional Video13:07
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Creating the Customer Controller

Higher Ed
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:...
Instructional Video10:59
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Creating the Home Controller

Higher Ed
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...
Instructional Video3:15
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Registering in Startup Class

Higher Ed
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...
Instructional Video16:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create an Order Repository

Higher Ed
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...
Instructional Video9:40
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Integrating Serilog for Web API Logging

Higher Ed
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...
Instructional Video2:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Edit the appsettings.json File to Include the Connection String

Higher Ed
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...
Instructional Video4:19
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the IOrderRepository Interface

Higher Ed
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...
Instructional Video4:50
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the ICustomerRepository Interface

Higher Ed
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...
Instructional Video3:22
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Model Class

Higher Ed
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...
Instructional Video9:18
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Stored Procedures for CRUD Operation

Higher Ed
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...
Instructional Video5:57
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the SQL Server Database Tables

Higher Ed
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....
Instructional Video2:36
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create a Web API

Higher Ed
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...
Instructional Video12:40
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Hidden Fields for State Management

Higher Ed
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...
Instructional Video8:13
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Query Strings for State Management

Higher Ed
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...
Instructional Video18:03
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - State Management (Session State)

Higher Ed
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...
Instructional Video15:00
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Integrating Microsoft GitHub Repository Sample Code

Higher Ed
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...
Instructional Video8:58
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Model Binding Introduction

Higher Ed
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...
Instructional Video9:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware

Higher Ed
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...
Instructional Video7:36
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create Your Custom Middleware

Higher Ed
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...