Clean Architecture, JWT Auth, AI Agents & More
Clean Architecture guides for .NET 10, JWT authentication, AI agent memory patterns, EF Core interceptors, Blazor UI updates, and performance tips.
Jasen's top three picks
- 1 Async and Await in C# for Beginners
c-sharpcorner.com
Solid async/await primer for developers making the jump to asynchronous programming patterns.
- 2 On .NET Live - Fluent UI Blazor: The next step
youtube.com
Microsoft's Fluent UI Blazor gets major updates - worth watching if you're building modern web UIs.
- 3 .NET Data Community Standup: 8 Real-World Query Anti‑Patterns (and How to Fix Them)
youtube.com
Chris Woodruff tackles common EF Core query mistakes that kill performance in production apps.
Editor's note
Today’s mix spans foundational patterns to cutting-edge AI development. The Clean Architecture guides from CodeWithMukesh offer practical .NET 10 implementations, while the AI agent memory patterns show how to build enterprise-grade intelligent systems. The EF Core interceptors article demonstrates real-world cross-cutting concerns, and Scott Sauber’s ten essential practices provide battle-tested wisdom for every .NET project.
Today's articles
Async and Await in C# for Beginners
c-sharpcorner.com
Unlock the power of asynchronous programming in C#! This beginner's guide explains async and await with clear examples, boosting app responsiveness and performance. Learn to handle long-running tasks ...
Topics: C#
Read articleOn .NET Live - Fluent UI Blazor: The next step
youtube.com
In this session, Denis and Vincent will show you what is new in the next major version of the Microsoft Fluent UI Blazor library. 🔗 Repo: https://github.com/microsoft/fluentui-blazor 🎙️ Featuring: M...
Topics: Blazor
Read article.NET Data Community Standup: 8 Real-World Query Anti‑Patterns (and How to Fix Them)
youtube.com
Join us for another show, where Chris Woodruff teaches us about 8 query anti-patterns and how to fix them. 🔗 Links: https://learn.microsoft.com/en-us/ef/core/learn-more/community-standups 🎙️ Featuri...
Topics: EF Core
Read articleClean Architecture in .NET: Benefits, Challenges, and Implementation Guide
c-sharpcorner.com
Learn Clean Architecture in .NET with practical examples. Explore its benefits, challenges, implementation approach, and best practices for scalable applications.
Topics: Clean Architecture
Read articleImplementing Clean Architecture in .NET 10 - Step-by-Step Guide
codewithmukesh.com
A complete, junior-friendly guide to Clean Architecture in .NET 10. Build a movie API across Domain, Application, Infrastructure, and API layers with EF Core and Aspire.
Topics: .NET Aspire Clean Architecture .NET 10
Read articleRepository Pattern in .NET 10 - Do You Really Need It?
codewithmukesh.com
I have shipped 50+ .NET APIs and most did not need a Repository Pattern. My sharp .NET 10 verdict on when to use it, when to skip it, what to use instead.
Topics: Design Patterns .NET 10
Read articleAnnouncing Agent Governance Toolkit MCP Extensions for .NET
devblogs.microsoft.com
Announcing a Public Preview .NET package that adds policy enforcement, startup tool scanning, fallback governance, and response sanitization to MCP servers with a single builder extension. The post An...
Topics: OpenAI
Read articleOn .NET Live - DuckDB & Orleans: When Fake Asynchrony Starves Your App!
youtube.com
Ledjon examines the impact of using DuckDB within Microsoft Orleans grains. He shows how synchronous calls can cause scheduler starvation and reduced throughput. The episode presents benchmark results...
Topics: Performance
Read articleOn .NET Live: How Coding Standards Supercharge .NET Quality & Performance
youtube.com
Discuss coding standards from the 20th anniversary edition of my book. How to structure your projects for long-term maintainability. How to apply coding standards that actually improve productivity. C...
Topics: Performance
Read articleJWT Authentication in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com
Implement JWT authentication in ASP.NET Core .NET 10 - generate signed tokens with JsonWebTokenHandler, secure Minimal API endpoints, and add role-based authorization.
Topics: ASP.NET Core .NET 10 JWT
Read articleAI Building Blocks for .NET: Add intelligence to your C# Apps
youtube.com
A practical, opinionated guide to building intelligent apps in .NET ⌚ Chapters: 00:00 Welcome and Intro 00:28 What we're talking about today 02:58 Today's building blocks 03:40 Foundations: Microsoft....
Read article.NET Aspire Explained: Building Cloud-Native Applications in .NET
c-sharpcorner.com
Learn .NET Aspire and discover how it simplifies building cloud-native applications with service discovery, observability, health checks, and distributed application support.
Topics: .NET Aspire
Read article.NET 11 in depth: Runtime, libraries, and SDK for the AI era
youtube.com
Join Chet and Rich for a tour of how the .NET Runtime, libraries, and tooling are improving for .NET 11. You'll learn about investments in Native AOT, support for AI agents of all kinds, foundational ...
Topics: Native AOT OpenAI
Read articleBlazor WASM in VS Code? Razor Editor Keeps Breaking After Save? Here’s the Fix
medium.com
*Pair-debugging with an AI agent. 9 extension versions tested. One root cause found.*
Topics: Blazor Visual Studio Code
Read articleImplementing Long-Term Memory in Enterprise AI Agents Using C#
c-sharpcorner.com
Learn how to implement long-term memory in enterprise AI agents using C#, vector databases, embeddings, and memory retrieval patterns to build intelligent and personalized AI solutions.
Read articleOne Missing Index Made My Query 600× Slower. I Found It in Front of the Client.
medium.com
A 4-minute story about why your database is slow — and the one-line fix, explained with a picture you can actually hold in your head.
Topics: Performance SQL Server
Read articleTen Things Scott Sauber Does On Every .NET App
spreaker.com
What settings, configurations, and workflows do you use for every .NET app? Carl and Richard talk to Scott Sauber about his list - from organizing folders by feature, to logging, security, and testing...
Topics: .NET Core
Read articleMulti-agent patterns in VS Code you won't learn from docs | BRK201
youtube.com
Building with one agent is familiar. Orchestrating a fleet of them in parallel across local, background, and cloud surfaces is where it gets real. You'll see the decisions that matter, how to decompos...
Topics: OpenAI Visual Studio Code
Read articleValidation with MediatR Pipeline Behavior and FluentValidation in .NET 10
codewithmukesh.com
Validate MediatR commands centrally in the pipeline with FluentValidation and IExceptionHandler in ASP.NET Core .NET 10 - clean handlers, one Problem Details response.
Topics: .NET 10 FluentValidation MediatR
Read articleASP.NET Core Endpoint Filters: Complete Guide with Examples
c-sharpcorner.com
Learn ASP.NET Core Endpoint Filters with practical examples. Understand validation, logging, authorization, performance monitoring, exception handling, and best practices for Minimal APIs.
Topics: ASP.NET Core Minimal APIs
Read articleRestSharp in Practice (Part 2) POST, PUT, DELETE, and JWT Authentication
medium.com
RestSharp in Practice (Part 2)
Read articleSimplifying .NET Installs with dotnetup
youtube.com
A new way to manage .NET SDK and Runtime installations that works for every user, on every platform! ⌚ Chapters: 00:00 Welcome and Intro 00:26 What we're talking about today 01:14 Installing .NET 07:2...
Topics: .NET Core
Read articleEntity Framework Core Interceptors: Real-World Use Cases and Examples
c-sharpcorner.com
Learn Entity Framework Core Interceptors with real-world examples. Implement auditing, soft deletes, SQL logging, and performance monitoring in EF Core applications.
Topics: EF Core
Read articleRestSharp in Practice (Part 3) Error Handling and Grid CRUD Save Patterns
medium.com
RestSharp in Practice (Part 3)
Topics: REST API
Read articleRefresh Tokens in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com
Implement refresh tokens in ASP.NET Core .NET 10 - token rotation, reuse detection, revocation, and where to store them, built on top of JWT authentication.
Topics: ASP.NET Core .NET 10 JWT
Read article