Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create AddCustomer Action Methods
On the Customer Controller side, AddCustomer (GET and POST) action methods are coded in this video with an explanation. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the View to Get Customer by ID
Completing this video will allow you to create a view that shows a customer with a specific ID and a message if that customer does not exist in the database. 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 - Create the GetCustomer Action Methods
You will learn how to complete the coding for the GetCustomer Action methods (both GET and POST) for the Customer Controller. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client"...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Index View (Customer Controller)
This video walks through the coding for creating the index view for the Customer Controller. The application is run to see the Customer list. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Controller
Students will be able to create the Customer Controller and complete the Index action method after completing this video. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Edit Home Controller Index View
We will edit the default Index view of the home controller in this video to customize it according to our needs. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the...
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 - Models Folder
This video discusses the default Models folder created on the creation of the MVC project. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series "ASP.NET 6.0 - Build...
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 - Completing Order Repository CRUD Methods
All the rest of the CRUD methods using ADO.NET for the order repository are completed in this video. 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 - Completing Customer Repository CRUD Methods
All the rest of the CRUD methods using ADO.NET for the customer repository are completed in this video. 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 - Error Logging in Web API Project
The error logging and handling concept adopted is explained in this video. 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 - 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 - 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 - Introduction: Build and Consume a Web API Using ASP.NET Core and ADO.NET
This is an eye-opener introduction into the highlights of a solution that has two projects: a Web API that is consumed in an ASP.NET Core MVC client. The application uses ADO.NET and uses client- and server-side validation. It also uses...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a Customer Repository
A Customer Repository class is created and initialized with the connection string and the logger object. GetAllCustomers() method is created to list all customers from the Customer table in the SQL database. This clip is from the chapter...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - How Do We Create an ASP.NET 6.0 Web API Using EF Core?
This is a complete video on creating an ASP.NET 6 Web API using EF Core code first approach. The video shows how to create a new ASP.NET 6 Web API project in VS 2022 and install the Nuget packages. This clip is from the chapter "Build...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - How to Migrate the Web API/MVC Project to ASP.NET 5.0?
This video will show the two main steps required to perform the migration from ASP.NET Core 3.1 to ASP.NET 5. This clip is from the chapter "Bonus: Migrating the Project to ASP.NET 5" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create UpdateOrder Action Methods
This video is about creating the GET and POST action methods for updating an order. You will learn the code with a thorough explanation of the methods. 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 - Testing Validation of Order Form Inputs
This video runs through the application and tests user input validation checks on the order form. You will learn how to test the client- and server-side validations after going through the video. This clip is from the chapter "Coding...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create AddOrder Action Methods
This video builds the code for AddOrder action methods (GET and POST). You will be able to AddOrder (HTTPGET) action method to return a view for adding order and AddOrder (HTTPPOST) action method to add(insert) customer order details to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create GetOrder View
In this video, you will learn how to create the GetOrder View with a thorough explanation. The application is also run to show the relevant functionalities. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using...