I just saw content I was studying about performance and optimization in ASP.Net applications. They presented me with a diagnostic tool called Glimpse
.
The tool's operation is perfect, it measures ajax requests execution times, SQL query time and the command of the SQL queries executed directly in the database, in short, a complete diagnosis, but the queries only work if are made through Entity Framework
.
Trying to bring this reality to my work environment, I came across the divergence that I use Dapper
and it only works for EF
.
My question then is whether it would be possible for such a tool to work with Dapper
? Is there another diagnostic tool that brings rich information like these?