EF Core, ASP.NET Auth, AI Agents, MAUI CoreCLR
Covers split query speedups, API key auth, Kafka event handling, Azure Functions, SignalR tracking, MAUI CoreCLR, and Blazor Web Workers.
Jasen's top three picks
- 1 Removing byte array allocations using ReadOnlySpan
csharpdigest.net
A clean reminder that small allocation cuts still matter, and ReadOnlySpan remains one of the best tools for low-level hot paths.
- 2 Three Ways to Handle Multiple Event Types in a Kafka Topic Using .NET, Avro, and Schema Registry
medium.com
Useful if you're balancing topic design against schema evolution and consumer complexity in Kafka-heavy systems.
- 3 How .NET Developers Transition Into Software Architecture (Without Rewriting Everything)
medium.com
A pragmatic architecture piece that avoids the usual rewrite fantasy and focuses on how teams actually grow responsibilities.
Editor's note
I put together another intentionally mixed lineup today, and a few items stood out right away. The EF Core 11 split query improvement is the sort of practical runtime win people can use immediately, while the API key authentication guide does a nice job covering production concerns instead of stopping at a demo. I also liked seeing MAUI move to CoreCLR in .NET 11 and the post on designing for partial failure, because both point at architectural decisions that matter long after the first deploy.
Today's articles
Removing byte array allocations using ReadOnlySpan
csharpdigest.net
no matter which version of .NET you're targeting
Topics: C# Performance
Read articleThree Ways to Handle Multiple Event Types in a Kafka Topic Using .NET, Avro, and Schema Registry
medium.com
Sometimes you need to publish multiple event types to the same Kafka topic. While creating one topic per event type is often the simplest…
Read articleHow .NET Developers Transition Into Software Architecture (Without Rewriting Everything)
medium.com
Most .NET developers never really transition into software architecture.
Topics: Clean Architecture Domain-Driven Design
Read articleCreating a Simple MCP Server in .NET
pmichaels.net
In my previous post, I covered how to interact with a local LLM from .NET using LM Studio. In this post, I’m going to take that a little…
Read articleA useful new .Net feature for Processes
blog.jermdavis.dev
The pace of change with .Net is pretty relentless these days. And every so often they ship a thing that fixes a challenge I've been mulling over addressing myself. That's happened again with Process A...
Topics: .NET 10 Performance
Read articleOn .NET Live - Demystifying Microsoft Agent Framework Middleware
youtube.com
In this session we'll walk through how Daniel Costea uses ChatClient and Agent middleware to turn plain .NET AI agents into production‑ready systems with observability, safety, and cost control. Start...
Topics: OpenAI Semantic Kernel
Read articleImplementing AI Memory Systems in C# Using Vector Databases
c-sharpcorner.com
Learn how to implement AI memory systems in C# using vector databases. Discover embeddings, semantic search, memory architectures, and best practices for building intelligent AI applications.
Read articleEF Core 11 makes your split queries faster
steven-giesel.com
If you use AsSplitQuery anywhere in your codebase, EF Core 11 has a present for you: your queries get faster.
Topics: EF Core Performance
Read articleWhen Your Use Case Half-Succeeds: Designing for Partial Failure in .NET
milanjovanovic.tech
A use case isn't a transaction. The moment it touches more than one system, you are dealing with partial failure. Here's how I classify side effects and design use cases that fail loudly and recover s...
Topics: Clean Architecture Design Patterns
Read articleDatabase Sharding in .NET Applications: Benefits, Challenges, and Implementation
c-sharpcorner.com
Unlock .NET app scalability with database sharding. Learn benefits, challenges, and implementation strategies for high-growth applications.
Topics: Performance SQL Server
Read article.NET MAUI Moves to CoreCLR in .NET 11
devblogs.microsoft.com
.NET MAUI apps on Android, iOS, and Mac Catalyst now run on CoreCLR by default in .NET 11, unifying the runtime across all of .NET. The post .NET MAUI Moves to CoreCLR in .NET 11 appeared first on .NE...
Read articleAzure Function Apps in C#: Triggers, Bindings, Durable Functions and Everything I Learned in…
medium.com
Azure Function Apps are a serverless compute service that runs small focused pieces of C# code in response to events. You write a function…
Topics: Azure Azure Functions C#
Read articleReal-time driver location tracking in .NET
csharpdigest.net
using Redis GEO, a mutable state buffer, and SignalR
Read articleGetting the Client IP Address in ASP.NET Core
weblog.west-wind.com
When I need to pick up the client IP Address in ASP.NET Core I always forget where to find the connection information. It's simple enough: HttpContext?.Connection?.RemoteIpAddress but I never remember...
Topics: ASP.NET Core Web API
Read articleThread Pool Exhaustion in ASP.NET: The Async Database Trap
blog.dotnetframework.org
If you’ve ever migrated a working ASP.NET application from synchronous database calls to async, and suddenly found yourself hitting connection pool timeouts under load, you’ve likely fallen into one o...
Topics: .NET Framework Performance SQL Server
Read articleAPI Key Authentication in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com
Production-grade API key authentication in ASP.NET Core .NET 10. Hashed keys, DB-backed store, AuthenticationHandler, decision matrix, full source repo.
Topics: ASP.NET Core Authentication Security
Read articleRunning background tasks in Blazor with Web Workers: Exploring the .NET 11 preview - Part 1
andrewlock.net
In this post I discuss the new Web Worker template available in .NET 11 for running CPU intensive tasks without blocking the UI
Read article🔴 Let It Cook with Claude Fable 5
youtube.com
Join us for Let It Cook as we vibe code with Claude Fable 5 in VS Code, exploring what this new model brings to GitHub Copilot and real-world AI-assisted development workflows. 🔗 Link: https://github...
Topics: GitHub Copilot Visual Studio Code
Read articleBuilding Resilient Cloud Applications with Polly and ASP.NET Core
c-sharpcorner.com
Build robust ASP.NET Core cloud apps with Polly. Implement retries, circuit breakers, timeouts, and fallbacks for ultimate resilience.
Topics: ASP.NET Core Design Patterns
Read articleBoost Your .NET Projects: Copilot, Benchmarks, and the Truth About Faster Code
dotnettips.com
The article discusses the limitations and benefits of using Copilot for code optimization in the Spargine .NET project. While some suggestions from Copilot significantly improved performance, others w...
Topics: Benchmarking GitHub Copilot Performance
Read article5 Sneaky .NET & EF Core Bugs That Will Crash Your App
c-sharpcorner.com
Discover 5 hidden .NET & EF Core bugs causing app crashes, from concurrency issues to silent query filters. Learn how to fix them!
Read article