The Name of the Tool from the Picture

JJ TT 141 Reputation points
2021-01-17T22:08:36.517+00:00

Goal:
The name of the tool in order review the code as a sql code when you apply the input linq code C#

(https://www.red-gate.com/simple-talk/wp-content/uploads/imported/2325-1-2fbc0f9f-774f-441e-a91c-acdd4a812ba7.png)

Problem:
What is the name of the tool? Can you find it at Visual studio 2019 or do you need an additional tool that need to be downloaded?

Info:
The picture is from this page (https://www.red-gate.com/simple-talk/dotnet/net-tools/entity-framework-performance-and-what-you-can-do-about-it/)

Thank you!

Entity Framework Core
Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
696 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Wade Gausden 166 Reputation points
    2021-03-07T01:02:28.033+00:00

    It mentions just above the picture, it's ANTS profiler, a product from RedGate : https://www.red-gate.com/products/dotnet-development/ants-performance-profiler/ (It's not free, but does have a 14 day trial).

    Depending on what you want to profile, Visual Studio does have it's own Profiler : https://learn.microsoft.com/en-us/visualstudio/profiling/profiling-feature-tour?view=vs-2019

    Specifically to your question :

    review the code as a sql code when you apply the input linq code C#

    SQL Server Studio (Free) has a profiler : https://learn.microsoft.com/en-us/sql/tools/sql-server-profiler/start-sql-server-profiler?view=sql-server-ver15. It won't tie your code to the SQL persay, but it's good as you step through code in Visual Studio debugger, you can have the profiler up and view SQL code as it's run. I use it a lot when writing Entity Framework code to check how EF is translating my LINQ to SQL.

    0 comments No comments