EF Core, OAuth, Azure Containers, and .NET Performance
Coverage includes I/O and GC tuning, .NET 11 Process API changes, EF Core projections, MCP servers in C#, and Azure Container Apps deployment.
Jasen's top three picks
- 1 Optimizing I/O Performance in .NET
dotnettips.com
Useful refresher on the unglamorous bottlenecks that often matter more than algorithm tweaks in production apps.
- 2 Building Your First MCP Server in C#: A 2026 Field Guide
medium.com
MCP is still evolving fast, so a grounded C# field guide is timely if you’re experimenting with agent tooling.
- 3 The Fasting Developer: Memory Discipline and GC Awareness in .NET
binaryintellect.net
A thoughtful performance piece that frames memory discipline as latency control, not premature optimization.
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.
Today's articles
Optimizing I/O Performance in .NET
dotnettips.com
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...
Topics: .NET Core Performance
Read articleBuilding Your First MCP Server in C#: A 2026 Field Guide
medium.com
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…
Read articleThe Fasting Developer: Memory Discipline and GC Awareness in .NET
binaryintellect.net
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...
Topics: .NET Core Performance
Read articleImprovements to reading Process outputs: Exploring the .NET 11 preview - Part 5
andrewlock.net
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
Read articleA Modular Vertical Slice Architecture Starter Kit for Real-World .NET
medium.com
Stronger boundaries, durable messaging, and serious reliability patterns without day-one distributed overhead.
Topics: Clean Architecture Domain-Driven Design
Read articleHow to guide agents during production investigations with .NET CLI
csharpdigest.net
AI agents can drive .NET diagnostic tools the same way a senior developer would
Read articleHow does your domain know your user?
medium.com
Almost every business application needs to answer a question that sounds simple: who is the current user? But “user” isn’t one thing…
Topics: Authentication Domain-Driven Design
Read articleAzure Container Apps Tutorial: Deploying Microservices Without Kubernetes
c-sharpcorner.com
Deploy microservices easily with Azure Container Apps. A serverless platform for containers, simplifying operations and scaling without Kubernetes.
Read articleClean Architecture + Vertical Slice Architecture in .NET
medium.com
Most software projects don’t become difficult because of complex business logic — they become difficult because of poor organization.
Topics: Clean Architecture CQRS
Read articleCaddy vs Nginx: Which Web Server Should Developers Choose in 2026?
c-sharpcorner.com
Caddy vs Nginx: Compare web servers for developers in 2026. Discover which is best for simplicity, automation, or advanced control.
Topics: ASP.NET Core Docker
Read articleC# PDF Libraries: What 'Free' Really Costs You (2026 Guide) - HackerNoon
hackernoon.com
C# PDF Libraries: What 'Free' Really Costs You (2026 Guide) HackerNoon
Topics: C#
Read articleStop Over-Fetching: Master EF Core Projections for Faster, Leaner APIs
bogdan-hatis.medium.com
Modern APIs rarely need every column from every related table.
Topics: EF Core Performance Web API
Read articleDelegates and Event in .Net (Understand in 5min)
medium.com
Many .NET developers learn about Delegates and Events, yet struggle to explain their practical applications in real projects. Instead of…
Topics: C#
Read articleHow to Secure APIs with OAuth 2.1 and OpenID Connect
c-sharpcorner.com
Secure your APIs with OAuth 2.1 and OpenID Connect. Learn about authentication, authorization, JWTs, PKCE, and best practices for modern applications.
Topics: Authentication OAuth Security
Read articleEF Core and Azure SQL Database: A Step-by-Step Guide
antondevtips.com
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
Topics: Azure EF Core SQL Server
Read article