Instructional Video9:44
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Edit Movies

Higher Ed
Through this lecture, the editing of movies has been accomplished using the same modal dialog used for adding a new movie. You will learn how to achieve the task of editing a record through a user input modal popup.
<
br/>
This clip...
Instructional Video6:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Communication Between Movie Detail and Movies

Higher Ed
This lecture explains how communication between the child and its parent component takes place. So, practically speaking, when the modal dialog is closed on saving a record, the added record is visible without refreshing the...
Instructional Video7:26
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - JavaScript Interop Calls to Modal

Higher Ed
This lecture shows how to close the modal dialog after saving to the database by clicking the submit button. You will learn the necessary changes needed to achieve this.
<
br/>
This clip is from the chapter "Create a CRUD...
Instructional Video22:00
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Modal Popup Dialog to Add a Movie

Higher Ed
This tutorial teaches how to make a modal popup dialog as a means for user input data for adding a movie.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video3:08
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Bootstrap to the Project

Higher Ed
To use Bootstrap modal dialog, we have to add jQuery and Bootstrap libraries using “Add Client-side Library”. This lecture will show you how to do this.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor"...
Instructional Video14:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies

Higher Ed
This video lecture shows how to create a details page for movies with a navigation menu.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This...
Instructional Video9:05
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Seed the Movies Database

Higher Ed
In this video, you will learn the process of seeding the database with some initial records for testing.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video8:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup

Higher Ed
Here, we will register the data access service in the Startup class ConfigureServices method. Once it is registered, the service can be called and used in the application.
<
br/>
This clip is from the chapter "Create a CRUD...
Instructional Video10:03
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create Methods for Add, Edit, and Delete Operations

Higher Ed
In this lecture, the remaining CRUD operations of add, edit, and delete are performed through coding for the corresponding async methods. You will have a complete understanding of the implementation of the DataAccessService in the...
Instructional Video12:24
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Data Access Service and Methods to Retrieve Records

Higher Ed
This lecture teaches how to create the Data Access Service class that implements an interface. You will be able to create data access service to the movies model as well as retrieve a list of movies and any specific movie from the...
Instructional Video8:01
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create an Interface for Data Access Service

Higher Ed
This video shows the creation of an interface for a data access service that implements this interface.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video4:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add the Movie Entity to the ApplicationDbContext

Higher Ed
In this video, you are shown how to add the movie entity to the ApplicationDbContext class, which was generated with the selection of authentication (individual user account).
<
br/>
This clip is from the chapter "Create a CRUD...
Instructional Video4:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Movie Class

Higher Ed
A Movie Class is added to the newly created Models folder in this video. This will act as the model for the EF Core for generating the corresponding table in the database.
<
br/>
This clip is from the chapter "Create a CRUD...
Instructional Video5:30
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Implement Basic Authorization

Higher Ed
In this video, you are shown how to implement basic authorization in the Blazor app.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section...
Instructional Video5:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Users and Roles

Higher Ed
This video shows how to seed the tables with users and roles by running a method from the Startup class of the Blazor app.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn...
Instructional Video5:36
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - The Shared Folder

Higher Ed
This video lecture provides a discussion on the Shared folder in the ASP.NET Core 3.1 Blazor application; you will know the functions of the three shared Razor components (Main Layout, Navmenu, Login Display) and how they work together...
Instructional Video10:39
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Startup Class

Higher Ed
This lecture details the functions and features of the Startup class in a server-side Blazor application. It goes on to discuss the similarities and differences between the Configure and ConfigureServices method of any other type of...
Instructional Video6:27
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Understand the Project Structure

Higher Ed
This lecture details the default project and folder structure so you will be able to understand the function of each of the folders and the files within the folders.
<
br/>
This clip is from the chapter "Create a CRUD Application in...
Instructional Video7:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Learn Asynchronous Programming Through Coding Examples

Higher Ed
In this lecture, you will learn asynchronous programming concepts (essential for learning ASP.NET Core 3.1 Blazor).
<
br/>
This clip is from the chapter "Asynchronous Programming Fundamentals" of the series "Build and Learn ASP.NET...
Instructional Video11:04
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - ShouldRender

Higher Ed
This video explains the lifecycle methods for ShouldRender.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section explains...
Instructional Video9:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - SetParametersAsync

Higher Ed
This lecture discusses the SetParametersAsync method, which is the first method called in a component's lifecycle.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and...
Instructional Video29:33
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Two-Way Data Binding in ASP.NET Core 3.1 Blazor

Higher Ed
This lecture describes two-way data binding in Blazor. It walks through a user input form that collects data in input controls and as the user types into the input boxes, the data is immediately written to the browser.
<
br/>
This...
Instructional Video15:11
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Event Callback in ASP.NET Core 3.1 Blazor

Higher Ed
This video describes the event callback concept. You will learn how to enable communication among components with event callback.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series...
Instructional Video10:45
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Pass Parameter to Components and Prevent Default Action

Higher Ed
In this video, you will be able to pass parameters to top-level components and prevent default keypress inputs to be registered for a Blazor 3.1 server project. These features were released on December 3 by Microsoft and enhance Blazor...