Union Types, API Security, Durable Workflows
Covers C# 15 and .NET 11 benchmarks, ASP.NET Core API security and middleware, SQL vector search, NativeAOT, MAUI migration, and ETW diagnosis.
Jasen's top three picks
- 1 Benchmarking C# 15 Union Types in Real Applications
c-sharpcorner.com
Useful if you're trying to separate language novelty from measurable runtime cost.
- 2 Benchmarking HTTP Request Compression in .NET 11
c-sharpcorner.com
Good benchmark framing: bandwidth wins only matter if CPU and latency stay acceptable.
- 3 Benchmarking MCP C# SDK 2.0 Under Concurrent Tool Workloads
c-sharpcorner.com
Worth a look for anyone building AI tooling that has to survive real concurrency.
Editor's note
I kept this one deliberately mixed, which is exactly how I like these editions. The union types benchmark and the SQL Server vector search with EF Core piece both stand out because they test hot topics against production concerns instead of stopping at syntax or hype. I also liked the ETW diagnostics article for being practical, and the API security coverage is a good reminder that performance without guardrails is not enough.
Today's articles
Benchmarking C# 15 Union Types in Real Applications
c-sharpcorner.com
Benchmark C# 15 union types in real apps. Explore performance, allocations, boxing, and compare with interfaces for production readiness.
Topics: Benchmarking C# Performance
Read articleBenchmarking HTTP Request Compression in .NET 11
c-sharpcorner.com
Explore HTTP request compression in .NET 11 through practical benchmarks measuring bandwidth usage, CPU overhead, latency, and throughput across different compression scenarios.
Topics: Benchmarking .NET 10 Performance
Read articleBenchmarking MCP C# SDK 2.0 Under Concurrent Tool Workloads
c-sharpcorner.com
Benchmark MCP C# SDK 2.0 for .NET AI apps. Measure latency, throughput, concurrency, and resource usage under realistic tool workloads.
Topics: Benchmarking C# OpenAI
Read articleHow Enterprise Applications Leverage ASP.NET Core Middleware to Handle Requests at Scale
c-sharpcorner.com
ASP.NET Core Middleware is key for enterprise apps, handling security, tracing, rate limiting, and fault tolerance at scale.
Topics: ASP.NET Core OpenTelemetry Web API
Read articleSQL Server Vector Search: Benchmarking EF Core Workloads
c-sharpcorner.com
Benchmark SQL Server vector search with EF Core. Explore exact vs. approximate search, performance factors, and best practices for RAG.
Topics: EF Core Performance SQL Server
Read articleBuilding Resilient Long-Running .NET Workflows with Durable Execution
c-sharpcorner.com
Build resilient long-running .NET workflows with AWS Lambda Durable Execution using checkpoints, callbacks, waits, retries, and recovery for reliable distributed processing.
Topics: Azure Functions Design Patterns
Read articleBenchmarking C# Async Tail-Await Optimizations in .NET 11
c-sharpcorner.com
Benchmark C# async tail-await optimizations in .NET 11 to measure their impact on asynchronous execution, latency, throughput, allocations, and runtime performance.
Topics: Benchmarking C# Performance
Read articleREST API Security Best Practices in ASP.NET Core
medium.com
It does not matter how clean your architecture is or how fast your queries run — if an attacker can read another user’s orders or forge a… Continue reading on CodeX »
Topics: ASP.NET Core REST API Security
Read articleDatabase Performance in .NET
medium.com
In Part 1, I wrote about boundaries. In Part 2, I wrote about aggregates and invariants. In Part 3, I wrote about domain events. In Part 4…
Topics: EF Core Performance SQL Server
Read articleThe Lazy Engineer’s Blueprint
medium.com
Why I stopped re-deciding the same twenty things on every .NET Web API, the four-move contract, and the map of the whole series.
Topics: Clean Architecture Design Patterns Web API
Read articleSecuring ZIP-Based .NET Applications with Password-Protected Archives
c-sharpcorner.com
Explore password-protected ZIP archives in .NET and learn how to securely package, transfer, and protect application data using the latest ZIP security capabilities.
Read articleBuilding DNS-Aware Failover Clients with .NET 11
c-sharpcorner.com
Build a DNS-aware failover client with .NET 11 that dynamically handles DNS changes, endpoint failures, recovery scenarios, and resilient service communication.
Topics: .NET 10 Performance REST API
Read articleBuilding Durable .NET Workflows with AWS Lambda Durable Execution
c-sharpcorner.com
Build resilient .NET workflows on AWS Lambda with Durable Execution. Manage state, retries, and long waits directly in C# code.
Topics: Azure Functions Design Patterns
Read articleBenchmarking Zstandard Compression in .NET Applications
c-sharpcorner.com
Benchmark Zstandard compression in .NET 11 apps. Compare speed, size, CPU, and memory against GZip & Brotli for optimal data handling.
Topics: Benchmarking .NET 10 Performance
Read articleMigrating Xamarin to .NET MAUI: What I Learned the Hard Way as a Developer
rbohara.medium.com
iOS surprises, a Bluetooth rabbit hole, and the navigation library that got a price tag overnight
Topics: .NET MAUI
Read articleYour .NET API Works. But Is It Actually Production-Ready?
medium.com
A practical guide to taking an ASP.NET Core API from “it works on my machine” to something you can confidently deploy.
Topics: ASP.NET Core Security Web API
Read articleBenchmarking .NET 11 NativeAOT CLI Startup and Memory Usage
c-sharpcorner.com
Benchmark .NET 11 NativeAOT command-line applications against JIT deployments to compare startup time, memory consumption, execution performance, and deployment characteristics.
Topics: Benchmarking Native AOT Performance
Read articleReading ETW events and diagnosing production issues
medium.com
A practitioner’s guide to Event Tracing for Windows — from provider to root cause
Topics: .NET Core Performance Profiling
Read article