Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise 1 on Methods
In this video, you will apply what you have learned about methods through a practical exercise. You will be given a problem statement and will learn how to design and implement methods to solve the problem. This exercise will help you...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Methods
In this video, you will learn about methods, which are functions defined within a class. You will understand the different types of methods, such as instance methods, class methods, and static methods, and how to use them in your...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise on Class
In this video, you will apply what you have learned about classes through a practical exercise. You will be given a problem statement and will learn how to design and implement a class to solve the problem. This exercise will help you...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Classes in Detail
In this video, you will take an in-depth look at classes in Python, including their structure, usage, and benefits. You will also explore the importance of __init__ and self in class code, using practical examples for better understanding.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Create Your First Class with OOP
In this video, you will learn how to create your first class in Python using OOP principles. You will understand the syntax for defining a class, creating objects, and initializing attributes. This video will provide a step-by-step guide...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - What Is a Progressive Web Application?
This lecture describes the fundamentals and features of a progressive web application. It also discusses how Blazor fits that role. This clip is from the chapter "Bonus Section: Progressive Web Applications" of the series "Build and...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Testing a Few Spinner Components
In this lecture, we will experiment with a couple of Spinner components (Chase and Grid) to appreciate the contribution of the package. The app is run without a delay and analysis is done for the visual results (with and without a...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Adding Spinkit to the App
This lecture teaches the steps to configure BlazorPro.Spinkit, a Nuget package that allows animated loading indicators while the data is being asynchronously fetched from the database. This clip is from the chapter "Additional Content:...
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. This clip is from the chapter "Create a CRUD Application in 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. This clip is from the chapter "Create a CRUD Application in Blazor" of the series...
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. 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 - 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. This clip is from the chapter "Create a CRUD Application in...
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. 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 - 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). This clip is from the chapter "Create a CRUD Application in...
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. This clip is from the chapter "Create a CRUD Application in...
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. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
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. This clip is from the chapter "Create a CRUD Application in Blazor" of...
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. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Edit the Movies Table
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. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Migration to Create Movies Table
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. This clip is from the chapter "Create a CRUD Application in Blazor" of the...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Database and Add Tables to Store Users and Roles
This tutorial shows how to create a database for the Blazor app and add User and Roles tables to the database. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...