Vertical slices, EF Core, and .NET 10 API validation
A varied .NET roundup covering architecture debates, EF Core performance pitfalls, C# features, diagnostics, Blazor, Azure networking, and .NET 10 APIs.
Jasen's top three picks
- 1 The Myth of “Clean Architecture” in .NET: Why I Switched to Vertical Slices
medium.com
A sharp argument for vertical slices over layered abstractions.
- 2 Laravel vs. .NET Core: A Real Developer’s No-Nonsense Comparison
medium.com
A cautionary EF Core tale: lazy loading can hide expensive surprises.
- 3 EF Core Was Fast… Until Lazy Loading Destroyed My App
medium.com
Good reminders that diagnostics and profiling pay for themselves.
Editor's note
I kept this one intentionally mixed: architecture, data access, language features, and platform updates all show up side by side. The Clean Architecture to Vertical Slices piece and the EF Core lazy-loading writeup are especially practical if you’re trimming complexity or chasing a performance bug. I also liked the .NET 10 minimal API validation post for how much boilerplate it removes.
Today's articles
The Myth of “Clean Architecture” in .NET: Why I Switched to Vertical Slices
medium.com
Is Clean Architecture causing ‘lasagna code’ in your projects? Learn why Vertical Slice Architecture is the modern standard for…
Topics: ASP.NET Core Clean Architecture Design Patterns
Read articleLaravel vs. .NET Core: A Real Developer’s No-Nonsense Comparison
medium.com
Laravel or .NET Core — most answers are influenced by preference, community hype, or ecosystem comfort.
Read articleEF Core Was Fast… Until Lazy Loading Destroyed My App
medium.com
When it comes to working with .NET EF Core, the first thing that comes to mind is — High Performance ORM. Yes, EF Core is really fast… Continue reading on Dot Net, API & SQL Learning »
Topics: EF Core Performance Profiling
Read articleAuthentication in .NET — Part 10: Securing Web APIs Using Policy-Based Scopes
dilankam.medium.com
In earlier parts of this series, we explored authentication foundations, JWTs, hybrid flows, and authorization models. In Part 10, we…
Topics: Authentication Authorization Web API
Read articleConcurrency and Producer–Consumer Pattern with C# BlockingCollection
medium.com
In today’s world, it has become critical for an application to handle multiple tasks simultaneously. Many areas rely on this capability…
Topics: C# Performance
Read article10 Architecture Mistakes That Kill .NET Microservices in Production
medium.com
A practical guide to the most common microservices failures and how we design resilient, observable, and scalable .NET systems in…
Topics: .NET Aspire Clean Architecture OpenTelemetry
Read articleInterface vs Abstract Class — Finally Clear Explanation
medium.com
The Confusion
Topics: C# Design Patterns
Read articleAsync/Await Is Killing Your .NET Performance: The Value-Task Masterclass
medium.com
Async/Await is slow. Master ValueTask and advanced C# concurrency patterns to write allocation-free, lightning-fast .NET APIs.
Topics: C# .NET Core Performance
Read articleDiagnose Memory Leaks in .NET in 15 Minutes — A Practical Walkthrough
medium.com
(Stop rebooting pods and finally fix the real issue)
Topics: Performance Profiling
Read article5 .NET Diagnostics Secrets Every Experienced Developer Learns the Hard Way
blog.stackademic.com
Clean stack traces, faster profiling, safer observability, and diagnostics that never slow you down. Continue reading on Stackademic »
Topics: OpenTelemetry Profiling
Read articleHow to Detect Spam from Text Input in C# .NET Core
cloudmersive.medium.com
Detecting and blocking spam inputs in our application starts with accurately classifying what spam is.
Read articleBlazor Full-Stack in 2025: What’s New, What’s Changed, and How to Build Modern Web Apps
medium.com
For years, Blazor has been evolving from a promising newcomer to a full-stack framework capable of powering enterprise-grade web…
Topics: ASP.NET Core Blazor .NET 10
Read articleThe C# Features You’re Not Using (But Should Be)
medium.com
Stop writing code like it’s 2015
Read article#️⃣ What’s New in C# 14
medium.com
Extension Members with a Real Example
Read articleUnderstanding Classes and Types of Classes in C# – A Complete Guide
c-sharpcorner.com
This article provides a complete and easy-to-understand guide to classes and all types of classes in C#. It covers the fundamentals of what a class is, how objects work, and explains each class type—i...
Read articleWhy Your LINQ Is Generating SQL You Didn’t Expect — And How to See the Truth
medium.com
(And the ONE profiling trick every senior .NET dev should use)
Topics: .NET Framework EF Core Performance
Read articleAzure networking updates on security, reliability, and high availability
azure.microsoft.com
The cloud landscape is evolving at an unprecedented pace, driven by the exponential growth of AI workloads. The post Azure networking updates on security, reliability, and high availability appeared ...
Topics: Azure Kubernetes Security
Read article3 Ways to Check for null in C# — Which One Do You Use?
medium.com
Null checks are everywhere in our code. But modern C# gives us cleaner, smarter, and more expressive ways to handle them.
Read articleI Finally Tried .NET 10 Minimal API Validation — It Removed More Boilerplate Than I Expected
blog.stackademic.com
Discover how a tiny feature in .NET 10 cleaned up my endpoints, automated request checks, and made validation feel like magic — with real… Continue reading on Stackademic »
Topics: ASP.NET Core .NET 10 Minimal APIs
Read articleWhy I Use The Unit of Work Pattern With EF Core | Clean Architecture in .NET 9
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: Clean Architecture Design Patterns EF Core
Read articleFixing Broken LINQ Queries in EF Core: A Developer’s Troubleshooting Guide
medium.com
Improve EF Core Performance by Understanding How LINQ Really Translates to SQL.
Topics: .NET Framework EF Core Performance
Read article