SQL, SignalR, and .NET 10 performance
A wide mix of .NET reads: SQL fundamentals, SignalR with Wolverine, Azure observability, caching, validation, and .NET 10 collection speedups.
Jasen's top three picks
- 1 How Learning SQL Can Open Doors in the Age of Data
trevoirwilliams.com
A useful reminder that SQL still opens doors, especially if you want to understand data-driven systems instead of just consuming them.
- 2 Using SignalR with Wolverine 5.0
jeremydmiller.com
Wolverine + SignalR is a nice combo for real-time apps; this one is for people building messaging-heavy systems.
- 3 Mastering Mailbox Cleanup and Holds in Exchange Online
c-sharpcorner.com
The .NET 10 foreach benchmarks are the kind of thing performance-minded devs should pay attention to before they tune hot paths.
Editor's note
I kept this issue intentionally mixed, with practical app-building posts alongside performance and platform pieces. The .NET 10 foreach benchmark and the SignalR + Wolverine write-up stood out because they point to real-world throughput and messaging work. I also liked the observability item for AI agents, since it ties Aspire, Application Insights, and OpenTelemetry into something teams can use today.
Today's articles
How Learning SQL Can Open Doors in the Age of Data
trevoirwilliams.com
Every click, swipe, and purchase creates data. Every business, from a tiny online shop to global tech giants, is swimming in it. But here’s the catch: only a small percentage of people actually know h...
Topics: SQL Server
Read articleUsing SignalR with Wolverine 5.0
jeremydmiller.com
The Wolverine 5.0 release earlier last last week (finally) added a long requested SignalR transport. The SignalR library from Microsoft isn't hard to use from Wolverine for simplistic WebSockets or Se...
Topics: .NET Core SignalR Web API
Read articleMastering Mailbox Cleanup and Holds in Exchange Online
c-sharpcorner.com
Exchange mailbox cleanup and holds
Topics: .NET Framework
Read articleMaster Repository & Unit of Work Patterns in ASP.NET Core (Part-37 of 40)
c-sharpcorner.com
Build testable, maintainable, and scalable data access layers for your applications. This comprehensive guide provides real-world examples, production-ready code, and best practices for implementing t...
Topics: ASP.NET Core Clean Architecture Unit Testing
Read articleThe Ultimate .NET 9 Developer Roadmap (Cloud-Native + AI-Ready Edition)
blog.stackademic.com
If you’re building modern, intelligent, and scalable .NET applications, 2025 is the year to go beyond syntax and think in systems… Continue reading on Stackademic »
Topics: .NET Aspire Azure .NET 9
Read articleStop Allocating Arrays — Start Renting Them Like a Pro
medium.com
We allocate arrays like it’s free candy. Every new byte[1024] or new char[4096] feels harmless — until your profiler lights up with GC…
Topics: Benchmarking C# Performance
Read articleASP.NET Core FluentValidation & AutoMapper Guide | Clean Data & Robust APIs (Part-38 of 40)
c-sharpcorner.com
Master ASP.NET Core data validation and object mapping with FluentValidation and AutoMapper! This guide provides a comprehensive walkthrough, from basic setup to advanced enterprise patterns. Build ro...
Topics: ASP.NET Core AutoMapper FluentValidation
Read articleZero-Cost foreach: How .NET 10 Turbo-charges Your Collections
medium.com
.NET 10 slashes enumeration costs in List, Stack, Queue & ConcurrentDictionary — benchmarks show up to 6× faster loops with zero… Continue reading on .Net Programming »
Topics: Benchmarking .NET 10 Performance
Read articleWCF Service for Local Device Integration and Cloud API Interaction in C#
c-sharpcorner.com
Integrate local devices with cloud APIs using WCF in C#. Learn to build a secure, reliable middleware for seamless data exchange between Windows devices and cloud services.
Topics: Azure .NET Framework Web API
Read articleUnderstanding CancellationToken in .NET 9.0
c-sharpcorner.com
Learn how to use CancellationToken in .NET 9.0 to gracefully stop async tasks, prevent resource waste, and improve application stability. Includes code example!
Topics: C# .NET 9 Performance
Read articleReal-Time Observability for AI Agents with .NET Aspire, Application Insights & OpenTelemetry
c-sharpcorner.com
Master AI agent observability with .NET Aspire, Application Insights, and OpenTelemetry. Monitor performance, debug issues, and ensure production readiness. From local dev to Azure!
Topics: Application Insights .NET Aspire OpenTelemetry
Read articleAdd request logging to a database in an ASP.NET Core Web API
roundthecode.com
Learn how to add request logging to a database in an ASP.NET Core Web API using Entity Framework Core to effectively monitor and analyse API traffic. The page Add request logging to a database in an A...
Topics: ASP.NET Core EF Core Web API
Read articleDownloading Azure Blob Files to On-Premise Servers — A Real-World, Step-by-Step Guide
c-sharpcorner.com
Learn how to securely and efficiently download Azure Blob files to on-premise servers. Step-by-step guide with real-world examples, scripts, and automation tips!
Topics: Azure Azure Functions
Read articleWorking with String, StringBuilder, and StringBuffer in C#
c-sharpcorner.com
Master C# string manipulation! Compare string, StringBuilder, & StringBuffer (simulated) in ASP.NET WebForms. Boost performance & ensure thread safety. ??
Topics: C# .NET Framework Performance
Read articleStop Writing Boilerplate: Let These 5 Modern C# Features Do the Work
blog.stackademic.com
Less clutter, fewer ifs, cleaner models, and APIs that basically document themselves. These tricks just make C# feel… nicer. Continue reading on Stackademic »
Topics: C# .NET Core Solid Principles
Read articleOptimize Azure Costs with Reserved Instances
youtube.com
• Video: Advisor Clinic: Lower costs with Azure Virtual Machine reservations https://www.youtube.com/watch?v=o5hCnWfqAzc • Video: Manage Azure AI Foundry Provisioned Throughput Reservations https://w...
Topics: Azure Azure DevOps Performance
Read articleThe Developers’ Guide to Caching: Why We Cache and How It Really Works
blog.williamachuchi.com
Caching is one of those concepts every developer has heard of yet few fully understand until they’ve been forced to scale. This article is…
Topics: Performance Redis
Read article15 Essential C# Shorthand Operators Every Developer Should Know in 2025
medium.com
Introduction
Topics: C# Design Patterns Performance
Read articleLife Tracker: A .NET App — 6 Basic Auth
jackymlui.medium.com
Code fohttps://github.com/Recelis/questionnaire.net.git
Topics: ASP.NET Core Authentication .NET Core
Read articleUnderstanding Inheritance and Polymorphism in C#
c-sharpcorner.com
Unlock C#'s power! Explore inheritance and polymorphism with practical ASP.NET WebForms examples. Build reusable, scalable, and maintainable applications. Master OOP!
Topics: C# .NET Framework Solid Principles
Read articleC# Excel to HTML Conversion: A Practical Guide
medium.com
This guide walks you through how to convert Excel to HTML and customize the conversion options in C# using a third-party .NET library
Topics: C# .NET Framework Web API
Read articleFactorial Calculator (ASP.NET WebForms Example)
c-sharpcorner.com
Build a real-time factorial calculator using ASP.NET WebForms (C#). This tutorial provides a step-by-step guide with code examples for front-end design and back-end logic.
Topics: C# .NET Framework Web API
Read article