We can easily work with SQL Server databases with the help of System.Data.SqlClient library in C#.
We can return values from stored procedures or we can write sql commands by hardcoding them in C# code.
Then we pass the result to a SqlDataReader to read the values.
But I am really wondering what SQL Server returns to C#.
C# makes the call to SQL Server and SQL Server gives something (XML, JSON or whatever it is) to C# on return.
What is this thing really? And how can we get only this thing if we want to read it through manually ourselves?