Hello, I would like to be able to map a SQL query, as received by SQLServer to the originating Linq query. On SQLServer, we register all SQL queries with a duration of more than 10 seconds. We use this list to check if there are no queries to optimize. With queries that are created directly in the code, it's easy to find where the query is sent to SQLServer and to find which screen of the application is impacted. I would like to do the same with Linq queries. Is it possible to find, starting from
Read More...