EF Core 10, C# 14, and ASP.NET Core tips
A varied .NET roundup with EF Core 10, C# 14 extension members, ASP.NET Core pitfalls, MediatR logging, and architecture advice.
Jasen's top three picks
- 1 Google Just Replaced Coding With Orchestration — Meet Antigravity
medium.com
A buzzy look at Google’s orchestration-first workflow, interesting mainly for how fast our tooling assumptions are shifting.
- 2 The Hidden Complexity Behind a “Simple” Request–Response
medium.com
A solid reminder that request/response hides more moving parts than most of us think about day to day.
- 3 Stop Writing 10 Repository Methods for One Query! — Harness the Specification Pattern in EF Core
medium.com
Specification pattern plus EF Core is a useful combo when repository sprawl starts getting silly.
Editor's note
I pulled together a deliberately mixed issue today: there’s real framework depth alongside some plain-language fundamentals. The EF Core 10 piece and the C# 14 extension members article are the standouts for readers tracking what’s new, while the async/await and blocking-calls posts are good reminders that everyday code still hides sharp edges.
Today's articles
Google Just Replaced Coding With Orchestration — Meet Antigravity
medium.com
(Why this is the biggest upgrade to your developer workflow since Git)
Topics: OpenAI
Read articleThe Hidden Complexity Behind a “Simple” Request–Response
medium.com
If you ask most developers what a request–response model is, they’ll shrug and say:
Topics: Design Patterns
Read articleStop Writing 10 Repository Methods for One Query! — Harness the Specification Pattern in EF Core
medium.com
What’s the story about? It’s the morning after an API launch. A simple new endpoint — “Get gatherings by creator name and include…
Topics: CQRS Design Patterns EF Core
Read articleThe Hidden Bugs Behind async/await That No One Warns You About
medium.com
Async/await looks innocent… until it silently destroys your application. Let’s talk about the stuff juniors are never told — the async…
Topics: C# Performance
Read articleMastering Loops in C#: A Complete Guide With Best Practices, Mistakes, and When to Use What
c-sharpcorner.com
Master C# loops! This guide covers for, while, foreach, parallel loops, and LINQ. Learn best practices, common mistakes, and performance tips for efficient code.
Topics: C#
Read articleThe Nightmare of Blocking Calls in ASP.NET Core — and How to Detect Them
medium.com
(A detective story: diagnosing thread starvation with live profiler traces)
Topics: ASP.NET Core Performance Profiling
Read articleSolving Logging as a Cross-Cutting Concern with MediatR in .NET 9
medium.com
A 3-Part Enterprise Guide to Clean, Scalable, Centralized Logging
Read article.NET Tricks to Speed Up Your Next Build
medium.com
Introduction
Topics: .NET Core Performance
Read articleWhat is a Constructor?
c-sharpcorner.com
Unlock the power of constructors in programming! Learn what they are, how they work, and their different types (default, parameterized, DI) with C# examples. Master object initialization!
Topics: C# Design Patterns
Read articleVertical Slice Architecture in simple terms
medium.com
Vertical slice architecture is a different approach to structuring a solution that can significantly improve the maintainability of an…
Topics: Clean Architecture CQRS Design Patterns
Read articleThe New C# 14 Extension Members Hack You Must Try
medium.com
A practical guide to the new C# 14 extension members with examples, diagrams, and clean patterns you’ll actually use.
Read articleInterface vs Abstract Class in C#: Real-World and Programming Examples Explained in Simple Language
c-sharpcorner.com
Unlock the power of C#! Explore interfaces vs. abstract classes with real-world and programming examples. Learn when to use each for optimal design and code reuse.
Topics: C# Design Patterns
Read articleStop Fragile Code: Enforce Business Rules Using DDD Entities
medium.com
We will learn another important Key Topic Entity in DDD.
Topics: Domain-Driven Design Design Patterns
Read articleWill This New EF Core Feature Be the End of Dapper?
medium.com
If you want the full source code, join our community: Here
Topics: Dapper EF Core Performance
Read article10 Common Mistakes Beginners Make in ASP.NET Core (And How to Avoid Them)
medium.com
When you first start building ASP.NET Core APIs, everything feels like magic… until the magic punches you in the face.
Topics: ASP.NET Core Security Web API
Read articleEF Core 10 Just Dropped — And It Might Be the Biggest Upgrade .NET Has Ever Seen
blog.stackademic.com
A deep, practical exploration of the most ambitious EF release yet, packed with new performance features, powerful LINQ upgrades, and… Continue reading on Stackademic »
Topics: .NET 10 EF Core Performance
Read articleConvert HTML to RTF (Rich Text) Using C#
medium.com
This guide details how to implement the HTML to RTF conversion efficiently using C# and the free .NET library.
Topics: C#
Read article