Home Archive EF Core Concurrency, Agents, and Span – .NET News Daily Issue #456 (May 15, 2026)

Editor's note

I pulled together another deliberately mixed issue today, from low-level .NET 9 memory work with Span, Memory, and ref structs to pragmatic EF Core 10 concurrency handling in Web API. The Durable Workflows post for Microsoft Agent Framework also stood out because it shows where agent orchestration is getting concrete, while the BackgroundService behavior change in .NET 11 is the kind of runtime detail that can save debugging hours.

EF Core Concurrency, Agents, and Span

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

Share your testimonial →

Today's Articles

Working with Span, Memory, and ref structs in High-Performance Apps using .NET 9

https://www.c-sharpcorner.com/article/working-with-span-memory-and-ref-structs-in-high-performance-apps-using-net-9/

Unlock peak .NET 9 performance! Dive into Span<T>, Memory<T>, and ref structs for allocation-free, high-speed code. Master stack-based memory and reduce GC pressure.

Article preview

Why not have changes in API behavior depend on the SDK you link against?

https://devblogs.microsoft.com/oldnewthing/20260506-00/?p=112303

Some time ago, I noted that the Co­Initialize­Security function demands an absolute security descriptor, even though many functions in Windows produce self-relat

Article preview

Modernising a Legacy Fleet Platform: Architectural Decisions, Scope Uncertainty, and a Phased Path…

https://medium.com/@ibrahimahmed9578/modernising-a-legacy-fleet-platform-architectural-decisions-scope-uncertainty-and-a-phased-path-27a94ec9eaa3?source=rss------dotnet-5

While working for a client at DevNauts, I often have discussions about how to modernise the application. In the IT world, where AI is…

Article preview

Optimistic Concurrency in EF Core 10: ASP.NET Core Web API Guide

https://codewithmukesh.com/blog/concurrency-control-optimistic-locking-efcore/

Learn how to prevent data conflicts in ASP.NET Core Web API using optimistic concurrency with EF Core 10. RowVersion tokens, conflict resolution, retry strategies, and a decision matrix.

Article preview

Prompt Engineering in C#: System Messages, Few-Shot Examples & Structured Output

https://medium.com/@bhargavkoya56/prompt-engineering-in-c-system-messages-few-shot-examples-structured-output-5de99c78a56b?source=rss------dotnet-5

The Problem

Article preview

Durable Workflows in the Microsoft Agent Framework

https://devblogs.microsoft.com/dotnet/durable-workflows-in-microsoft-agent-framework/

Build durable AI agent workflows with the Microsoft Agent Framework. Start with in-process console apps, add durability with the Durable Task runtime, scale with parallel AI agents, and host on Azure ...

Article preview

The Complete C# Guide: From Access Modifiers to Zero-Allocation Memory — Everything a Production…

https://medium.com/jin-system-architect/the-complete-c-guide-from-access-modifiers-to-zero-allocation-memory-everything-a-production-8b40a5e1eb0f?source=rss------csharp-5

C# is one of the most feature-rich languages on the planet. The problem isn’t learning it — it’s knowing which parts actually matter when… Continue reading on JIN System Architect »

Article preview

5 MAUI UI Techniques Behind a Complete Netflix-Style App

https://medium.com/@artillustration391/5-maui-ui-techniques-behind-a-complete-netflix-style-app-6e95adfdbbb1?source=rss------csharp-5

I built a full Netflix-style UI in .NET MAUI from scratch — no libraries. Here are the five techniques that made it work.

Article preview

Containerization Assist Integration with AKS VSCode Extension

https://www.youtube.com/watch?v=keiuYN6kbb8

In this episode, we explore how Containerisation Assist integrates seamlessly with the Azure Kubernetes Service (AKS) VS Code Extension within Visual Studio Code, helping developers go from applicatio...

Article preview

BackgroundService exceptions now propagate in .NET 11

https://steven-giesel.com/blogPost/00fcb870-6bf7-4f97-824f-8eab1b8838be

Here's a bug that lived in .NET for over four years. If your BackgroundService threw an exception after its first await, your host would catch it, log a critical message, and then exit cleanly with ex...

Article preview

Announcing the WinApp VS Code Extension — Run, Debug, and Package Windows Apps in VS Code

https://devblogs.microsoft.com/ifdef-windows/announcing-the-winapp-vs-code-extension-run-debug-and-package-windows-apps-in-vs-code/

VS Code is where m

Article preview

Jasen's take on today's picks

Working with Span, Memory, and ref structs in High-Performance Apps using .NET 9

A practical refresher on the allocation-free toolbox in .NET 9, with the right focus on GC pressure and when stack-backed types actually help.

Why not have changes in API behavior depend on the SDK you link against?

Classic Raymond Chen: a sharp reminder that API behavior tied to linked SDKs creates compatibility traps you really do not want.

Modernising a Legacy Fleet Platform: Architectural Decisions, Scope Uncertainty, and a Phased Path…

Good architectural write-up on modernization trade-offs, especially the phased path when scope is still moving under your feet.

Optimistic Concurrency in EF Core 10: ASP.NET Core Web API Guide

Useful for teams building APIs that need sane conflict handling instead of hand-wavy concurrency stories.

Prompt Engineering in C#: System Messages, Few-Shot Examples & Structured Output

Structured output and few-shot prompting in C# remains highly relevant as more .NET apps embed LLM features.

Durable Workflows in the Microsoft Agent Framework

This is one of the more concrete agent posts lately, showing durability and orchestration instead of just high-level AI abstractions.

The Complete C# Guide: From Access Modifiers to Zero-Allocation Memory — Everything a Production…

Broad in scope, but there’s value here for developers trying to connect language features with production concerns.

5 MAUI UI Techniques Behind a Complete Netflix-Style App

A nice UI-focused MAUI piece that shows how far you can get without reaching for extra libraries.

Containerization Assist Integration with AKS VSCode Extension

Worth a look if you live in VS Code and want a smoother path from app to AKS deployment.

BackgroundService exceptions now propagate in .NET 11

Important runtime change to know about; silent-ish failure modes around BackgroundService have bitten plenty of teams.

Announcing the WinApp VS Code Extension — Run, Debug, and Package Windows Apps in VS Code

A meaningful tooling move for Windows app developers who prefer VS Code over the full Visual Studio experience.

Related issues

📬 Get daily .NET content delivered to your inbox