Series
PostgreSQL for .NET Developers
Two focused parts on the PostgreSQL knowledge a .NET developer actually needs: how indexes are chosen, and how to read the plan the planner hands back.
2 Parts
By Arun Nair
Started Jul 2026
Completed
Posts in this Series
1
Indexing Basics for .NET Developers
B-tree, partial and expression indexes explained through the queries a Dapper repository actually issues.
Jul 28, 2026
2 min read
Published

2
Reading PostgreSQL Query Plans
EXPLAIN ANALYZE from the top down: which numbers matter, which are noise, and the three shapes that mean trouble.
Aug 04, 2026
2 min read
Latest

Other Series
3 Parts
Blazor Server in Production
A four-part walk through everything that changes once a Blazor Server app leaves your laptop: render modes, circuit state, SignalR scale-out and the telemetry that tells you it is healthy.
In Progress