TIL: Rider can show SQL Results inline within query

Search for a command to run...

No comments yet. Be the first to comment.
I recently use the /goal command in Claude Code for the first time. I was struggling to reproduce a bug that I already had a theoretical understanding of from investigating the codebase, but had previ

Things that happened I received a happy birthday message from our HR system. It gave me the same vibes as the AI-written compliments I mentioned in Month in review: May 2026. Microsoft ran an "AI sk

Fixing a code analysis auto-fix which made acronyms less clear

Things I learnt A HashSet is for storing unique elements. The point is that it has O(1) lookups like a Dictionary does. It uses the same basic mechanism as a Dictionary does (hashing objects then usi

I was recently working with an EF Core entity which contained a C# Point property representing a geolocation. This was stored in a single column in a SQL Server database. (I think this uses NetTopolog

I use JetBrains Rider as my primary IDE, and I like to use it for as much of my development process as possible. I prefer to avoid jumping around between multiple different applications if I can, so when I want to run some SQL I typically use Rider rather than opening SSMS or Azure Data Studio (or the VS Code plugin which is replacing it).
Today I learnt that Rider contains an option to display the results of a query inline within the SQL window. I don’t think this will be my default way of viewing SQL results, I think I’ll stick with a table of data at the bottom of the window, but I can definitely see this being useful for debugging long queries by checking the results at each step of a lengthy process. I always like to know what tools are available even if I don’t have imminent plans to use them, because it opens up more possibilities for the future.
Details of how to enable this (either per–file or for all queries) are in the official documentation.