Hi, what do you want to do?
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Edit Movies
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...
<
br/>
This clip...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Communication Between Movie Detail and Movies
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - JavaScript Interop Calls to Modal
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...
<
br/>
This clip is from the chapter "Create a CRUD...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Modal Popup Dialog to Add a Movie
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...
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Bootstrap to the Project
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"...
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor"...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies
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...
<
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Seed the Movies Database
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...
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup
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...
<
br/>
This clip is from the chapter "Create a CRUD...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create Methods for Add, Edit, and Delete Operations
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Data Access Service and Methods to Retrieve Records
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create an Interface for Data Access Service
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...
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Add the Movie Entity to the ApplicationDbContext
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...
<
br/>
This clip is from the chapter "Create a CRUD...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Movie Class
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...
<
br/>
This clip is from the chapter "Create a CRUD...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Implement Basic Authorization
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...
<
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Users and Roles
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...
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - The Shared Folder
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Startup Class
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Understand the Project Structure
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...
<
br/>
This clip is from the chapter "Create a CRUD Application in...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Learn Asynchronous Programming Through Coding Examples
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...
<
br/>
This clip is from the chapter "Asynchronous Programming Fundamentals" of the series "Build and Learn ASP.NET...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - ShouldRender
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...
<
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - SetParametersAsync
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...
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Two-Way Data Binding in ASP.NET Core 3.1 Blazor
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...
<
br/>
This...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Event Callback in ASP.NET Core 3.1 Blazor
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...
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Pass Parameter to Components and Prevent Default Action
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...