Home Archive Web API, EF Core, CQRS and .NET 9 benchmarking – .NET News Daily Issue #261 (Aug 13, 2025)

Editor's note

I put together a deliberately mixed lineup today: practical Web API work, data-access tuning, and a few architecture pieces. The EF Core performance article and the .NET 9 benchmarking comparison are especially useful if you’re looking for real-world tradeoffs, not just patterns. I also liked the CUE + OpenAPI piece for its contract-first angle and the JWT/OAuth article for keeping API security grounded.

Web API, EF Core, CQRS and .NET 9 benchmarking

Hey code warriors, it's that time of the week when hump day feels more like debugging that last pesky error. But fear not—our .NET newsletter is packed with articles that will guide you through the quirkier corners of the framework. From lesser-known features that resemble retro gaming Easter eggs to tips that’ll make your code purr like a well-oiled classic car engine, today’s insights promise to add some zing to your routine. Dust off your favorite keyboard, and let's unravel the mysteries of .NET together!

Today's Articles

Building an ASP.NET Web API Controller

https://www.c-sharpcorner.com/blogs/building-an-asp-net-web-api-controller

This Web API project in ASP.NET handles financial chart data by processing multiple ISINs, validating client headers, executing SQL stored procedures, and returning structured JSON data for market ana...

Article preview

⚡ CUE + OpenAPI: Declarative API Design for Scalable, Reliable .NET Services

https://blog.yaseerarafat.com/cue-openapi-declarative-api-design-for-scalable-reliable-net-services-791a9b9e4e4e

Mastering CUE and OpenAPI for Automated, Reliable Contracts

Article preview

Application Domain In C#

https://medium.com/@emirkilinc/application-domain-in-c-ee88f9305236

ApplicationDomain basics and how to use it in .Net?

Article preview

LINQ : Advanced Techniques Every .NET Developer Should Master in 2025

https://medium.com/@prathameshabhang/linq-advanced-techniques-every-net-developer-should-master-in-2025-442e3dec4e45

Write LINQ that reads like C# and runs like SQL—clean and fast.

Article preview

Dynamic Service Registration in .NET: A Clean Approach to Dependency Injection

https://medium.com/@mahmood.alsarraj/dynamic-service-registration-in-net-a-clean-approach-to-dependency-injection-a3b656b37b71

Dependency Injection (DI) is a fundamental part of modern .NET applications, but manually registering dozens or hundreds of services can…

Article preview

Multithreading in C# .NET Core: A Real-World Guide (With Code, Mistakes, and Clarity)

https://medium.com/codetodeploy/multithreading-in-c-net-core-a-real-world-guide-with-code-mistakes-and-clarity-a899ddf767d8

“Why is my app freezing?” “Why is this taking so long to load?” “My API works fine — until multiple users hit it at once…” Continue reading on CodeToDeploy »

Article preview

What are the Best Practices for EF Core Performance Optimization?

https://www.c-sharpcorner.com/article/what-are-the-best-practices-for-ef-core-performance-optimization/

Learn how to optimize Entity Framework Core (EF Core) for high-performance data access. This article covers best practices, from query tuning to memory management, with practical C# code examples. Ide...

Article preview

Data Formats in .NET: What They Are and How They Look

https://medium.com/@sweetondonie/data-formats-in-net-what-they-are-and-how-they-look-f24932bd5dd0

When I started my first job as a junior developer, one of the first things I saw in the backend codebase was something like this:

Article preview

How do I secure a .NET Web API (JWT, OAuth, Identity)?

https://www.c-sharpcorner.com/article/how-do-i-secure-a-net-web-api-jwt-oauth-identity/

Learn how to secure your .NET Web API using JWT, OAuth2, and ASP.NET Core Identity. Implement token-based authentication, role-based access control, and protect your endpoints with best practices.

Article preview

Why .NET Full Stack Developers Are the Backbone of Enterprise Digital Transformation in 2025

https://medium.com/@rajeshmonopoly1/why-net-full-stack-developers-are-the-backbone-of-enterprise-digital-transformation-in-2025-e496d30048bc

As businesses accelerate toward digital-first strategies in 2025, the demand for skilled professionals who can architect, build, and scale…

Article preview

Trigger, Render, Deliver: Email Templates Made Easy with DotLiquid & EasyLaunchpad

https://bizsoltech.medium.com/trigger-render-deliver-email-templates-made-easy-with-dotliquid-easylaunchpad-1b3001072fa6

Email is one of the most vital — yet frustrating — parts of any SaaS product. Whether it’s sending a password reset, welcome message, or…

Article preview

Top 10 .NET Development Companies of 2025: How to Choose the Right Partner

https://belitsoft.com/net-development-companies

When you’re looking to hire a trusted .NET development partner, the “top 10” label usually indicates companies with deep expertise in…

Article preview

Practical CQRS and Event Sourcing with .NET 9

https://medium.com/@joshi.vignesh/practical-cqrs-and-event-sourcing-with-net-9-2d67e359e10a

Modern distributed systems demand scalability, traceability, and flexibility. CQRS (Command Query Responsibility Segregation) and Event…

Article preview

Why You Should Learn About EF Core AsSplitQuery

https://medium.com/@pongsakorn_m/why-you-should-learn-about-ef-core-assplitquery-f05628deed9d

For today we gonna learn to know about .AsSplitQuery() 😊

Article preview

Disabling thread safety check in Entity Framework

https://steven-giesel.com/blogPost/f1c14e0f-840c-4dd6-921c-364298a35d6f

In this blog post we will have a look into how to disable the thread safety check in Entity Framework. What are the implications of doing so and how to do it.

Article preview

How do I Migrate from .NET Framework to .NET 6/7/8?

https://www.c-sharpcorner.com/article/how-do-i-migrate-from-net-framework-to-net-678/

Migrating from the legacy .NET Framework to modern .NET 6, 7, or 8 can unlock massive performance, cross-platform support, and access to the latest tools. This guide walks you through a smooth and saf...

Article preview

Asynchronous Programming in C# — Comparing it with multi threading

https://ravindradevrani.medium.com/asynchronous-programming-in-c-comparing-it-with-multi-threading-7c1f2568eb89

Asynchronous task is a non-blocking task. Main thread goes back to the thread pool (and free to do other tasks) when it reaches to await –…

Article preview

5 Modern C# Features That Will Make Your Code Feel Like Magic

https://blog.stackademic.com/5-modern-c-features-that-will-make-your-code-feel-like-magic-d1ef6a374d13

The language evolved. Your code should, too. Continue reading on Stackademic »

Article preview

How is .Net platform independent?

https://dharinibalasubramaniam.medium.com/how-is-net-platform-independent-3934c5806a85

Understanding the Cross-Platform Nature of .NET with Real-World Analogies

Article preview

Understanding MVC in .NET

https://medium.com/@manojgowda882/understanding-mvc-in-net-c8b76d56e96e

I recently started working with ASP.NET and I kept hearing about “MVC” — the Model-View-Controller pattern. Everyone around me swore by it…

Article preview

Performance Benchmarking: .NET 9 vs Previous Versions

https://medium.com/@michaelmaurice410/performance-benchmarking-net-9-vs-previous-versions-f8c538489415

If you want the full source code, download it from this link: https://www.elitesolutions.shop/

Article preview

Jasen's take on today's picks

Building an ASP.NET Web API Controller

A concrete controller walkthrough with SQL and header validation — useful if you like seeing API plumbing end to end.

⚡ CUE + OpenAPI: Declarative API Design for Scalable, Reliable .NET Services

A contract-first API piece that pairs CUE with OpenAPI; good fodder for teams trying to keep specs and code aligned.

Application Domain In C#

A reminder that ApplicationDomain still comes up in legacy and plugin-style .NET discussions.

LINQ : Advanced Techniques Every .NET Developer Should Master in 2025

Solid LINQ refresher with more advanced patterns; best for people who want cleaner queries without sacrificing readability.

Dynamic Service Registration in .NET: A Clean Approach to Dependency Injection

Dynamic DI registration is one of those patterns that’s elegant until it isn’t — worth reading with your container setup in mind.

Multithreading in C# .NET Core: A Real-World Guide (With Code, Mistakes, and Clarity)

A practical threading guide that leans into the mistakes people actually make under load.

What are the Best Practices for EF Core Performance Optimization?

EF Core tuning always pays off, and this one focuses on the knobs that matter when queries get expensive.

Data Formats in .NET: What They Are and How They Look

A friendly intro to data formats in .NET, useful for newer devs or teams standardizing payload shapes.

How do I secure a .NET Web API (JWT, OAuth, Identity)?

JWT, OAuth, and Identity in one place: a sensible security roundup for anyone exposing an API.

Why .NET Full Stack Developers Are the Backbone of Enterprise Digital Transformation in 2025

A career/industry perspective rather than a how-to, but it does reflect how teams are staffing modern .NET work.

Trigger, Render, Deliver: Email Templates Made Easy with DotLiquid & EasyLaunchpad

Email templates with DotLiquid: niche, but handy if you’re wrestling with transactional messaging.

Top 10 .NET Development Companies of 2025: How to Choose the Right Partner

A vendor-style list, included as such; skim it for market context, not technical depth.

Practical CQRS and Event Sourcing with .NET 9

CQRS and event sourcing in .NET 9 with a practical bent — one of the stronger architecture reads here.

Why You Should Learn About EF Core AsSplitQuery

AsSplitQuery is the kind of EF Core detail that saves you from nasty joins and surprise performance cliffs.

Disabling thread safety check in Entity Framework

Disabling thread-safety checks is a sharp tool; the implications matter more than the shortcut.

How do I Migrate from .NET Framework to .NET 6/7/8?

A migration guide that should help teams moving off .NET Framework without losing their roadmap.

Asynchronous Programming in C# — Comparing it with multi threading

A useful side-by-side on async versus multithreading for people still untangling the concepts.

5 Modern C# Features That Will Make Your Code Feel Like Magic

Modern C# features in a compact format — a quick win if you want to update older code style.

How is .Net platform independent?

Cross-platform .NET explained for beginners; more introductory than most of the list.

Understanding MVC in .NET

MVC basics, which still matter if you’re onboarding into ASP.NET or maintaining older apps.

Performance Benchmarking: .NET 9 vs Previous Versions

Benchmarking .NET 9 against previous versions is always worth a look, especially if you’re planning an upgrade.

Related issues

📬 Get daily .NET content delivered to your inbox