Rate Limiting, .NET 11, C# 14
Curated .NET reading on ASP.NET Core throttling, C# 14 and union types, EF-backed RAG, memory safety, and practical enterprise design.
Jasen's top three picks
- 1 Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com
A practical guide that gets into the operational details teams actually need: partitioning, Redis coordination, rejection handling, and policy tradeoffs.
- 2 .NET 11 Preview 4 Roundup: MAUI, Blazor, EF Core, SDK and Runtime Updates
news.google.com
Useful if you want one pass across the latest platform changes without chasing separate MAUI, Blazor, runtime, and EF Core announcements.
- 3 C# 14 New Features Explained with Real-World Examples
c-sharpcorner.com
Worth skimming to see which C# 14 changes feel immediately usable versus which ones are mostly syntactic cleanup.
Editor's note
I kept this issue deliberately mixed, which is usually where the most useful reading shows up. The ASP.NET Core rate limiting guide stands out for being production-minded instead of purely conceptual, and the C# memory safety post matters because it points to deeper language changes than a typical feature drop. There’s also a solid spread here across previews, legacy code realities, AI workflow tooling, and everyday C# fundamentals.
Today's articles
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com
Production-grade rate limiting in ASP.NET Core .NET 10. All 4 algorithms, partitioning, Redis backplane, OnRejected with Retry-After, multi-tenant tiers, and a real decision matrix.
Topics: ASP.NET Core .NET 10 Redis
Read article.NET 11 Preview 4 Roundup: MAUI, Blazor, EF Core, SDK and Runtime Updates
news.google.com
.NET 11 Preview 4 Roundup: MAUI, Blazor, EF Core, SDK and Runtime Updates
Topics: Blazor EF Core .NET MAUI
Read articleC# 14 New Features Explained with Real-World Examples
c-sharpcorner.com
Explore C# 14's powerful new features with real-world examples! Boost productivity, reduce boilerplate, and enhance performance in your .NET applications.
Topics: C# Performance
Read articleYour Legacy .NET Code Works Perfectly
medium.com
— And That’s Exactly the Problem
Topics: Clean Architecture .NET Framework
Read articleAgent Skills for Python: File, Code, and Class - Composed in One Provider
devblogs.microsoft.com
Python developers working with Agent Skills can now author skills as files on disk, as inline Python code, or as reusable classes - and mix them freely through composable source classes that handle di...
Read articleWhat were the limitations of early tools like Script#?
youtube.com
Vector Databases for .NET Compared: Azure AI Search, Qdrant, Cosmos DB & pgvector
Topics: Azure Cosmos DB PostgreSQL
Read articleImproving C# Memory Safety
devblogs.microsoft.com
We're in the process of significantly improving memory safety in C#. The unsafe keyword is being redesigned to inform callers that they have obligations that must be discharged to maintain safety, doc...
Read articlePragmatic Monads for .NET Developers
medium.com
For sometime now, whenever I heard about Monads, my eyes glazed over. As a .NET developer, the heavy academic jargon — functors, category…
Topics: C# Design Patterns
Read articleSkills in Claude Code - Reusable Prompts and Workflows
codewithmukesh.com
Build reusable skills in Claude Code with SKILL.md to automate .NET workflows. Complete frontmatter reference, arguments, subagent delegation, and 5 design patterns from 47 production skills.
Topics: OpenAI Semantic Kernel
Read article.NET (OK, C#) finally gets union types🎉: Exploring the .NET 11 preview - Part 2
andrewlock.net
In this post I discuss the support for union types released in .NET 11, how they're implemented, the choices made, and how to create your own
Read articleBuilding a RAG store with Entity Framework
medium.com
On its own, an LLM doesn’t know everything, especially if you want to use it inside your own proprietary business system. It couldn’t have…
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 articleMastering C# Delegates: The Remote Controls That Power Your Code
medium.com
Say goodbye to messy if-else chains and learn how C# delegates power events, design patterns, LINQ, and cleaner, more flexible code. Continue reading on TechBits@Argusoft »
Topics: C# Design Patterns
Read articleC# Replace Text in Word Documents (Regex Replace)
medium.com
In many enterprise applications, programmatically modifying Word documents is a common requirement — whether it’s batch‑updating…
Topics: C#
Read articleHow .NET Developers Build Secure and Scalable Enterprise Applications
medium.com
Enterprise software development really needs this rare mix of performance and security, but also maintainability, and long-term platform…
Topics: Design Patterns Security
Read article