Home Archive EF Core, OAuth, Azure Containers, and .NET Performance – .NET News Daily Issue #498 (Jul 16, 2026)

Editor's note

I kept this one deliberately mixed, which is usually where the best practical reading shows up. The I/O performance piece and the GC-awareness article are worth pairing because they attack responsiveness from different angles, while Andrew Lock’s look at .NET 11 Process output handling is a nice preview of API polish that solves real pain.

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

Optimizing I/O Performance in .NET

https://dotnettips.com/2026/07/12/optimizing-i-o-performance-in-net/?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

I/O operations impact application responsiveness, scalability, and costs. Enhancing file access, HTTP requests, and networking improves user experience while reducing resource consumption. This chapte...

Building Your First MCP Server in C#: A 2026 Field Guide

https://medium.com/@nickzdanovych/building-your-first-mcp-server-in-c-a-2026-field-guide-66c08ffbea21?source=rss------csharp-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

If you’ve touched an AI coding tool in the last year, you’ve probably run into the Model Context Protocol (MCP) even if nobody called it…

The Fasting Developer: Memory Discipline and GC Awareness in .NET

https://www.binaryintellect.net/articles/f3c06695-d347-4ede-89a8-6ff39c3e4049.aspx?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

There is a quiet assumption baked into most .NET codebases: the Garbage Collector will always clean up. And technically, it will. But the cost of that cleanup — paid in latency, in CPU time, in unpred...

Improvements to reading Process outputs: Exploring the .NET 11 preview - Part 5

https://andrewlock.net/exploring-the-dotnet-11-preview-5-improvments-to-process-apis/?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

In this post I show some of the improvements to the Process API in .NET 11 for running processes and reading their outputs without risk of deadlock

A Modular Vertical Slice Architecture Starter Kit for Real-World .NET

https://medium.com/@antonioangio/a-modular-vertical-slice-architecture-starter-kit-for-real-world-net-094871c08284?source=rss------dotnet-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Stronger boundaries, durable messaging, and serious reliability patterns without day-one distributed overhead.

How to guide agents during production investigations with .NET CLI

https://csharpdigest.net/newsletters/2314-how-to-guide-agents-during-production-investigations-with-net-cli?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

AI agents can drive .NET diagnostic tools the same way a senior developer would

How does your domain know your user?

https://medium.com/@eugene.maksak/how-does-your-domain-know-your-user-6e41716c24ae?source=rss------dotnet-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Almost every business application needs to answer a question that sounds simple: who is the current user? But “user” isn’t one thing…

Azure Container Apps Tutorial: Deploying Microservices Without Kubernetes

https://www.c-sharpcorner.com/article/azure-container-apps-tutorial-deploying-microservices-without-kubernetes/?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Deploy microservices easily with Azure Container Apps. A serverless platform for containers, simplifying operations and scaling without Kubernetes.

Clean Architecture + Vertical Slice Architecture in .NET

https://medium.com/@kevalbalar1995/clean-architecture-vertical-slice-architecture-in-net-b315143dfccd?source=rss------csharp-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Most software projects don’t become difficult because of complex business logic — they become difficult because of poor organization.

Caddy vs Nginx: Which Web Server Should Developers Choose in 2026?

https://www.c-sharpcorner.com/article/caddy-vs-nginx-which-web-server-should-developers-choose-in-2026/?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Caddy vs Nginx: Compare web servers for developers in 2026. Discover which is best for simplicity, automation, or advanced control.

C# PDF Libraries: What 'Free' Really Costs You (2026 Guide) - HackerNoon

https://hackernoon.com/c-pdf-libraries-what-free-really-costs-you-2026-guide?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

C# PDF Libraries: What 'Free' Really Costs You (2026 Guide)    HackerNoon

Stop Over-Fetching: Master EF Core Projections for Faster, Leaner APIs

https://bogdan-hatis.medium.com/stop-over-fetching-master-ef-core-projections-for-faster-leaner-apis-845b68a888f4?source=rss------csharp-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Modern APIs rarely need every column from every related table.

Delegates and Event in .Net (Understand in 5min)

https://medium.com/@neal.kansariya/delegates-and-event-in-net-understand-in-5min-87949a44b3ff?source=rss------csharp-5&utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Many .NET developers learn about Delegates and Events, yet struggle to explain their practical applications in real projects. Instead of…

How to Secure APIs with OAuth 2.1 and OpenID Connect

https://www.c-sharpcorner.com/article/how-to-secure-apis-with-oauth-2-1-and-openid-connect/?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

Secure your APIs with OAuth 2.1 and OpenID Connect. Learn about authentication, authorization, JWTs, PKCE, and best practices for modern applications.

EF Core and Azure SQL Database: A Step-by-Step Guide

https://antondevtips.com/blog/ef-core-and-azure-sql-database?utm_source=dotnetnews.co&utm_medium=referral&utm_campaign=the-net-news-daily-issue-498

A step-by-step guide to using EF Core with Azure SQL Database - create the database in Azure Portal, connect and run migrations, add transient-fault resilience, and switch to passwordless Microsoft En

Jasen's take on today's picks

Optimizing I/O Performance in .NET

Useful refresher on the unglamorous bottlenecks that often matter more than algorithm tweaks in production apps.

Building Your First MCP Server in C#: A 2026 Field Guide

MCP is still evolving fast, so a grounded C# field guide is timely if you’re experimenting with agent tooling.

The Fasting Developer: Memory Discipline and GC Awareness in .NET

A thoughtful performance piece that frames memory discipline as latency control, not premature optimization.

Improvements to reading Process outputs: Exploring the .NET 11 preview - Part 5

This is exactly the kind of runtime quality-of-life improvement I like to see in preview coverage.

A Modular Vertical Slice Architecture Starter Kit for Real-World .NET

Good fit for teams that want stronger modular boundaries without jumping straight into full distributed complexity.

How to guide agents during production investigations with .NET CLI

Interesting angle on letting agents drive familiar diagnostics through the .NET CLI rather than inventing new workflows.

How does your domain know your user?

A solid architectural question that gets messy fast if identity concerns leak into the domain model.

Azure Container Apps Tutorial: Deploying Microservices Without Kubernetes

Helpful for developers who want containerized deployment on Azure without taking on Kubernetes overhead day one.

Clean Architecture + Vertical Slice Architecture in .NET

Another useful perspective on combining architectural styles instead of treating them as mutually exclusive camps.

Caddy vs Nginx: Which Web Server Should Developers Choose in 2026?

Not .NET-specific, but relevant infrastructure context for anyone hosting web apps and APIs.

C# PDF Libraries: What 'Free' Really Costs You (2026 Guide) - HackerNoon

Licensing and operational tradeoffs around PDF libraries are easy to underestimate until procurement gets involved.

Stop Over-Fetching: Master EF Core Projections for Faster, Leaner APIs

If your APIs are slow, projections are one of the highest-value EF Core habits to build early.

Delegates and Event in .Net (Understand in 5min)

Basic topic, but still worthwhile when it connects delegates and events to actual usage instead of syntax trivia.

How to Secure APIs with OAuth 2.1 and OpenID Connect

Broad security overview, with OAuth 2.1, OIDC, JWT, and PKCE giving newer API developers a decent map.

EF Core and Azure SQL Database: A Step-by-Step Guide

Practical guide for getting EF Core working cleanly against Azure SQL, including resiliency and passwordless access.

Related issues

📬 Get daily .NET content delivered to your inbox