Instructional Video21:44
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Migrating the Completed Movie App CRUD Application to ASP.NET 6.0

Higher Ed
This video describes the process of migration of the main Blazor Movie App project to the current ASP.NET 6.0 as target framework. It shows the working of the ASP.NET Core 3.1 version first before proceeding with the migration to...
Instructional Video2:18
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Save Data to the Database

Higher Ed
This lecture shows the code to add new record data to the movie database.
<
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 explains...
Instructional Video2:27
Curated Video

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

Higher Ed
The movies table is edited to make all fields non-nullable. You will learn how to redesign a table and update the database with the changes.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series...
Instructional Video3:10
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Migration to Create Movies Table

Higher Ed
This lecture shows the addition of migration (to EF Core) to create the movies table. You will learn the essential Package Manager console commands to do this.
<
br/>
This clip is from the chapter "Create a CRUD Application in...
Instructional Video3:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Frequently Used Page Directives for a Razor Page

Higher Ed
This video explains the frequently used page directives for a Razor page.
<
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 explains...
Instructional Video1:37
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Database and Add Tables to Store Users and Roles

Higher Ed
This tutorial shows how to create a database for the Blazor app and add User and Roles tables to the database.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video2:49
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Function of _Imports.razor Class

Higher Ed
This video details the uses of the _Imports.razor file in the project; you will know where/how to introduce this file in the Blazor Server application.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of...
Instructional Video3:25
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - The Program Class and Host Object

Higher Ed
This lecture explains the hosting process of a Blazor application where the Program class main method is the entry point to the application.
<
br/>
This clip is from the chapter "Create a CRUD Application in Blazor" of the series...
Instructional Video1:54
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Run the Blazor App

Higher Ed
This lecture shows the Blazor app as running on the browser; you will be able to run the app and understand the various elements of the app created by default.
<
br/>
This clip is from the chapter "Create a CRUD Application in...
Instructional Video2:08
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Blazor (Server) App with Individual User Accounts Authentication

Higher Ed
This is a lecture that describes the creation of Blazor (Server) with an individual user account.
<
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 Video9:51
Curated Video

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

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnAfterRender and OnAfterRenderAsync.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build...
Instructional Video11:17
Curated Video

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

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnParametersSet and OnParametersSetAsync.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series...
Instructional Video9:14
Curated Video

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

Higher Ed
This lecture discusses the OnInitialized and OnInitializedAsync methods 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 Learn ASP.NET 6.0...
Instructional Video3:34
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods in ASP.NET Core 3.1 Blazor - Part 1 (Fundamentals)

Higher Ed
This lecture provides an insight into the fundamentals of the lifecycle methods in Blazor. It answers questions like what lifecycle methods mean and how they are called by the components.
<
br/>
This clip is from the chapter...
Instructional Video9:30
Curated Video

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

Higher Ed
This video shows how a Razor (Blazor) component can inherit a base class that is derived from the ComponentBase class for certain advantages.
<
br/>
This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of...
Instructional Video16:47
Curated Video

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

Higher Ed
The tutorial builds a binding demo project in Visual Studio 2019, which toggles a paragraph with changed text and styles on the clicking of a button. A counter gets incremented as well.
<
br/>
This clip is from the chapter "Advanced...
Instructional Video9:52
Curated Video

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

Higher Ed
This video discusses URL routing with code samples. Blazor components can accept multiple route templates. It is also possible to pass parameters to the components by the route templates.
<
br/>
This clip is from the chapter...
Instructional Video10:54
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Stop Event Propagation and Detailed Error Handling During App Building

Higher Ed
This video explains the stop event propagation and error handling during app building.
<
br/>
This clip is from the chapter "What's New in Blazor 3.1 Released with ASP.NET Core 3.1?" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video9:35
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Partial Classes and Component Tag Usage

Higher Ed
This video explains how to use partial classes and understand component tag helpers for a Blazor 3.1 server project. These features were released on December 3 by Microsoft and enhance Blazor features.
<
br/>
This clip is from the...
Instructional Video12:59
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Nested Component in Blazor

Higher Ed
This video explains how to create a child component that is nested in a parent component. You will know about the parameter attribute and RenderFragment delegate and their use in the app.
<
br/>
This clip is from the chapter...
Instructional Video13:59
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create Your First Razor Component in Blazor

Higher Ed
In this video, you will create your first Razor (Blazor) component that computes the average of numbers, and you will understand the core concept of components and be able to build simple components with Blazor.
<
br/>
This clip is...
Instructional Video8:10
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Blazor Hosting Models

Higher Ed
This video explains different hosting models for the Blazor framework and makes you aware of their pros and cons before deciding to go ahead with one or the other.
<
br/>
This clip is from the chapter "Introduction to ASP.NET Core...
Instructional Video5:04
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - What Is Blazor?

Higher Ed
This is an introduction to the ASP.NET Core 3.1 Blazor web framework. Through this lecture, you will be able to have an overview of Blazor and get answers to common questions such as: What is Blazor? Why should I learn Blazor?
<
br/>...
Instructional Video4:39
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Live Demo of Completed Blazor App

Higher Ed
This video demonstrates the completed movies web app that you will build hands-on within the course. This demo includes all the features on offer in the completed Blazor application.
<
br/>
This clip is from the chapter...