Blazor & Clean Architecture Masterclass 🚀 3h Preview & Special Promo
🚀 Join the Masterclass here: https://dnwa.net/42ImJrj
---
00:00:00 Blazor & Clean Architecture Masterclass 🚀 3h Preview & Special Promo
00:00:40 Welcome!
00:02:11 About .NET 9
00:04:21 Tools & SDKs (.NET Framework & Visual Studio)
00:05:58 Create the Blazor Project
00:18:47 Solution Overview
00:31:05 Run the Application
00:39:30 Quick Look at Stream Rendering with Blazor SSR
00:45:03 What's next?
00:48:28 Download & Install Git
00:50:34 Create a GitHub account
00:54:34 Create a repository with Visual Studio
01:07:47 Check out your GitHub repository
01:10:50 What is Clean Architecture anyway?
01:10:50 What is Clean Architecture anyway?
01:17:43 Add the Domain & Application Layer
01:24:34 Implement the Domain Layer
01:31:04 Implement the Application Layer
01:36:11 Add Dependency Injection
01:41:55 Display Articles with Blazor
01:50:01 What is Entity Framework?
01:52:51 Merge & New Feature Branch
01:56:01 Add the Infrastructure Layer Project
01:58:03 Add the ApplicationDbContext
02:01:38 Add the Connection String & the SQL Server Provider
02:06:18 Wire it up with Dependency Injection
02:11:13 Add an abstract base Entity
02:14:00 Utilize Code-First Migrations
02:22:02 Implement the Article Repository to retrieve data
02:25:41 Display Articles from the Database
02:30:02 What is CQRS & the Mediator Pattern?
02:40:11 Install MediatR Package & Add to Service Collection
02:43:23 Implement a Query & replace the ArticleService
02:50:18 Use the new GetArticlesRequest in Blazor