Multi-Tenancy, SignalR, Agents, and MAUI
This issue covers SaaS tenancy design, JWT auth in serverless RAG, the outbox pattern, Azure Pipelines bundling, MAUI setup, and SignalR apps.
Jasen's top three picks
- 1 Multi-Tenancy Isn’t About Databases
codeopinion.com
A solid architecture-first take. If you still frame tenancy as a schema-per-customer decision, this is worth your time.
- 2 What I wish I knew 10 years ago when I started with C#
medium.com
Helpful perspective piece for newer developers trying to separate language fundamentals from framework churn.
- 3 Building Real-Time Applications with SignalR and ASP.NET Core
c-sharpcorner.com
A straightforward SignalR primer for chats, notifications, and live dashboards on ASP.NET Core.
Editor's note
I kept this one intentionally mixed, which is usually where the best practical reading shows up. The multi-tenancy piece is a strong reminder that tenant boundaries are an application design concern, not just a database choice, and the outbox article is a useful reliability refresher for distributed systems. I also liked the Azure Pipelines esbuild write-up because it focuses on a very real maintenance and packaging problem teams run into.
Today's articles
Multi-Tenancy Isn’t About Databases
codeopinion.com
You start off with what seems like the obvious solution to a multi-tenant SaaS application. We have tenant A. We have tenant B. We have one application and one database. Within that database, for ever...
Topics: ASP.NET Core Clean Architecture Domain-Driven Design
Read articleWhat I wish I knew 10 years ago when I started with C#
medium.com
A 3-step roadmap to avoid getting lost in the chaos of modern frameworks, and what the senior community has to say about it.
Topics: C#
Read articleBuilding Real-Time Applications with SignalR and ASP.NET Core
c-sharpcorner.com
Build real-time apps with SignalR & ASP.NET Core. Enable instant updates, chat, notifications, and more with persistent connections.
Topics: ASP.NET Core SignalR
Read articleValidating and Authorizing JWTs in a Serverless Multi-Agent RAG Backend
c-sharpcorner.com
Secure serverless RAG with JWT validation & authorization. Integrate claims into LangGraph for multi-agent data isolation and compliance.
Topics: Authorization Azure Functions JWT
Read articleHow to Implement the Outbox Pattern in Distributed Systems
c-sharpcorner.com
Ensure reliable event delivery in distributed systems with the Outbox Pattern. Achieve data consistency without complex distributed transactions.
Topics: Design Patterns Event Sourcing
Read articleShrinking Azure Pipeline task extensions using esbuild
devblogs.microsoft.com
TL;DR We bundled an internal Azure Pipelines task extension into a single bundled JavaScript file using esbuild. The task package dropped from tens of megabytes and thousands of files to three files p...
Topics: Azure DevOps
Read articleHow to insert-or-update without headache
csharpdigest.net
Entity Framework Extensions fills the gap with BulkMerge across all major databases
Topics: EF Core
Read articleBypassing the .NET GC: How I Hit 2.3 Million OPS With a C#-Native Embedded Database
medium.com
DataVo v0.1 Alpha: an open-source, zero-allocation SQL + vector engine that runs in-process, no native extensions required.
Topics: C# Performance SQL Server
Read article[.NET Versions Explained]: Confusion- .Net
medium.com
Do you know the difference between .NET, .NET Standard, .NET Framework, .NET Core, ASP.NET, and ASP.NET Core? Do you know why each exists…
Topics: ASP.NET Core .NET Core .NET Framework
Read articleBuilding AI Chat Applications with SignalR and ASP.NET Core
c-sharpcorner.com
Build real-time AI chat apps with SignalR & ASP.NET Core. Stream responses, enhance UX, and scale your conversational AI.
Topics: ASP.NET Core OpenAI SignalR
Read articleAgent Harness: Scaling the claw or harness capabilities
devblogs.microsoft.com
Part 3 of Build your own claw and harness with Microsoft Agent Framework. In Part 2 our personal
Read articleExtension Methods: Why They Exist and How They Evolved
medium.com
Core definition
Topics: C#
Read articleDeploying an MCP server to Azure Container Apps with the Microsoft Agent Framework
medium.com
In the last few blogs I built agents. They were great — until they lived on my laptop.
Read articleBuilding Multi-Environment & White-Label Ready .NET MAUI Apps Using MSBuild Configurations
medium.com
Most .NET MAUI applications begin with two build configurations: Debug and Release. As the project grows, additional environments such as…
Topics: .NET MAUI
Read articleBuilding Cross-Platform Desktop Apps with .NET MAUI in 2026
c-sharpcorner.com
Build cross-platform desktop apps with .NET MAUI in 2026. Leverage a single codebase for Windows, macOS, Android, and iOS. Discover its architecture, benefits, and best practices.
Topics: .NET MAUI
Read article