HTTP Resilience, EF Core, and MAUI Performance
Coverage includes Refit plus Polly circuit breakers, HTTP/3 and PostgreSQL benchmarks, EF Core tracking costs, MAUI CoreCLR regressions, and AI routing.
Jasen's top three picks
- 1 Resilient Microservices in .NET: Integrating Refit with Polly Circuit Breakers
c-sharpcorner.com
Useful if you want a concrete resiliency pattern, not just Polly theory. Refit plus circuit breakers is a common production pairing.
- 2 Delete Data in Bulk in Microsoft Dataverse Using C# and Web API
c-sharpcorner.com
A practical maintenance task with real cost implications. Good for teams living in Dataverse-heavy enterprise environments.
- 3 Benchmarking ASP.NET Core HTTP/3 Under Real API Load
c-sharpcorner.com
I like benchmark pieces that include CPU and memory, not just raw throughput. HTTP/3 still needs realistic load testing.
Editor's note
I kept this issue deliberately mixed, but a few patterns stood out. The Refit plus Polly piece is a practical resilience refresher, and the pair of EF Core tracking articles are worth reading together because they connect query behavior directly to memory cost. I also liked the MAUI CoreCLR migration coverage since it focuses on regressions and startup measurements instead of treating migration as a checkbox.
Today's articles
Resilient Microservices in .NET: Integrating Refit with Polly Circuit Breakers
c-sharpcorner.com
Secure .NET microservices with Refit & Polly circuit breakers. Prevent cascading failures and ensure resilience against HTTP dependency issues.
Topics: Performance REST API Web API
Read articleDelete Data in Bulk in Microsoft Dataverse Using C# and Web API
c-sharpcorner.com
Master Dataverse bulk data deletion using C# and Web API to optimize storage, boost performance, and manage costs efficiently.
Read articleBenchmarking ASP.NET Core HTTP/3 Under Real API Load
c-sharpcorner.com
Benchmark ASP.NET Core API HTTP/3 performance under real-world load. Measure latency, throughput, CPU, and memory for accurate insights.
Topics: ASP.NET Core Benchmarking Performance
Read articleTwo real apps on one framework: a conference platform and a store
medium.com
A framework’s README can claim anything. The real test is whether two unrelated applications, with different domains and different…
Topics: Clean Architecture Domain-Driven Design
Read article.NET MAUI CoreCLR Migration: Finding Mobile Regressions
c-sharpcorner.com
Navigate .NET MAUI CoreCLR migration for mobile apps. Discover regressions, test systematically, and ensure a smooth transition with this expert guide.
Topics: .NET Core .NET MAUI Performance
Read articleMigrating MCP C# Servers from SDK 1.x to 2.0
c-sharpcorner.com
Migrate MCP C# servers from SDK 1.x to 2.0 with this guide. Learn about stateless HTTP, protocol negotiation, and API changes for a smooth transition.
Read articleDeep Dive into EF Core Query Performance: Default Tracking vs. AsNoTracking
c-sharpcorner.com
In Entity Framework Core (EF Core), query performance and memory management are heavily governed by one underlying mechanism: Change Tracking. While EF Core's default tracking behavior makes data muta...
Topics: EF Core Performance Profiling
Read articleEF Core Tracking Is Silently Wasting Your Memory
medium.com
Your endpoint returns 50 order summaries. The query allocates objects for every matching order.
Topics: EF Core Performance Profiling
Read articleBenchmarking EF Core Complex-Type Indexes at Scale
c-sharpcorner.com
Benchmark EF Core 11 complex-type indexes at scale. Measure query latency, reads, CPU, execution plans, and write overhead.
Topics: Benchmarking EF Core Performance
Read articlePreventing Connection Pool Staleness with .NET 11 HTTP Eviction
c-sharpcorner.com
Learn how .NET 11 HTTP connection eviction helps prevent stale connections and improve reliability, latency, and connection-pool behavior in production applications.
Topics: .NET 10 Performance
Read articleBuilding Secure and Scalable Multi-Tenant SaaS Applications with .NET and Angular
c-sharpcorner.com
Learn how to build secure and scalable multi-tenant SaaS applications with .NET and Angular, covering tenant isolation, database architecture, authentication, scalability, monitoring, and DevOps.
Topics: Authentication Authorization Security
Read articleBenchmarking Local Speech-to-Text with Foundry Local and C#
c-sharpcorner.com
Benchmark local speech-to-text with Microsoft Foundry Local and C#, comparing transcription latency, CPU usage, memory consumption, accuracy, and offline performance.
Topics: Benchmarking C# OpenAI
Read articleRouting and Failover for Microsoft.Extensions.AI
devblogs.microsoft.com
As AI adoption scales, cost, uptime, and latency become first-class constraints on application architecture. Routing between models or providers is a lever on all three at once. These new Microsoft.Ex...
Topics: OpenAI Performance Semantic Kernel
Read articleScratch a simple data model, find a complex one
codeblog.jonskeet.uk
I seem to have a knack for discovering corner cases – or in many situations being a corner case. One category of this is where I find myself using a data model which appears simple to start with – and...
Topics: Domain-Driven Design Design Patterns
Read articleSOLID Principles in C#
medium.com
When a project is small, messy code still works. But as it grows, that mess starts to hurt because one small change breaks three other…
Topics: C# Solid Principles
Read articlePostgreSQL 18 AIO: Benchmarking .NET Database Workloads
c-sharpcorner.com
Benchmark PostgreSQL 18 AIO with .NET workloads. Measure performance differences between sync, worker, and io_uring for optimal database I/O.
Topics: Benchmarking Performance PostgreSQL
Read articleStop updating NuGet packages on every project
roundthecode.com
Learn how Central Package Management lets you manage NuGet package versions from a single file across all projects in your .NET solution.
Topics: .NET Core
Read articleBenchmarking .NET MAUI Startup After CoreCLR Migration
c-sharpcorner.com
Benchmark .NET MAUI startup after CoreCLR migration. Measure cold/warm starts, UI responsiveness, memory, and app size for accurate performance analysis.
Topics: Benchmarking .NET MAUI Performance
Read article