HybridCache, LINQ traps, API performance
Coverage spans .NET 10 HybridCache, deeper health checks, LINQ execution costs, legacy Excel handling, project structure, and test library design.
Part of: ASP.NET Core: a working guide for .NET developers, .NET Core: a working guide for .NET developers, Performance: a working guide for .NET developers
Jasen's top three picks
- 1 Stop Repeating Yourself! Loops in C# (Part 10)
medium.com
A beginner-friendly loops refresher, but still useful when teaching iteration habits and avoiding repetitive boilerplate early in a C# learning path.
- 2 Setting Up Figma MCP Server in VS Code
youtube.com
A short VS Code setup item with an odd regex tagline mismatch, but still potentially handy if you're exploring MCP tooling around Figma workflows.
- 3 HybridCache in ASP.NET Core .NET 10 - Complete Guide
codewithmukesh.com
One of the stronger entries here: practical HybridCache coverage with benchmarks, Redis layering, stampede protection, and migration guidance for real ASP.NET Core apps.
Editor's note
I pulled together another intentionally mixed issue today, which is how I like this newsletter best. The HybridCache guide stands out for its practical benchmarks and migration notes, while the IEnumerable vs IQueryable piece is the kind of production-focused reminder many teams need. I also liked the health checks article for pushing past the all-too-common “200 OK means healthy” assumption.
Today's articles
Stop Repeating Yourself! Loops in C# (Part 10)
medium.com
How to make the computer do the boring work over and over
Topics: C#
Read articleSetting Up Figma MCP Server in VS Code
youtube.com
Your Regex Is a Mess. Named Groups Will Save You.
Topics: Visual Studio Code
Read articleHybridCache in ASP.NET Core .NET 10 - Complete Guide
codewithmukesh.com
Master HybridCache in ASP.NET Core .NET 10. BenchmarkDotNet results, stampede protection demo, tag-based invalidation, Redis L2 setup, and migration from IDistributedCache.
Topics: ASP.NET Core .NET 10 Redis
Read articleAdvanced C# Concepts Every .NET Developer Should Know
medium.com
A practical deep-dive into async/await, delegates, pattern matching, expression trees, and reflection — with examples.
Topics: C#
Read articleWhy NPOI Is Still the King of Legacy Excel Processing in .NET
tonyqus.medium.com
While modern libraries move to .xlsx, NPOI remains the only free, reliable bridge to the world of .xls.
Topics: .NET Core
Read articleHealth Checks in ASP.NET Core: Beyond the Basic /health Endpoint
medium.com
A service returning 200 OK on /health doesn't mean it's healthy. It means the process is alive and the route handler executed. Your…
Topics: ASP.NET Core
Read articleWhy Most Developers Misunderstand IEnumerable vs IQueryable (And Pay for It in Production)
medium.com
You write a clean LINQ query, test it locally, and everything looks fine. Then it hits production.
Topics: C# Performance
Read articleBuilding an E-Commerce Checkout System in C# .NET
rohitsakhare.medium.com
How to stop losing customer money when your microservices crash mid-checkout
Topics: Clean Architecture .NET Core
Read articleHigh-Performance .NET APIs: Zero-Allocation Serialization Explained
medium.com
1. Real-World Problem Scenario
Topics: Performance System.Text.Json Web API
Read articleHow to Structure Your First .NET Project (Before It Turns Into an Unmaintainable Mess)
medium.com
A practical beginner-friendly guide to organizing your .NET applications before technical debt starts piling up.
Topics: Clean Architecture .NET Core
Read articleUltimate .NET
medium.com
If you’re serious about becoming a strong .NET Developer, this guide will take you from fundamentals to real-world architecture across:
Topics: .NET Core
Read articleBuilding an Open Source Assertion Library for .NET
medium.com
Fluent Assertions did a great deal for .NET testing. For a long time, it made test code feel far more natural than it had before…
Topics: Unit Testing
Read article