In our code, we get many linq to sql queries. We started to focus more on performance and are starting to see queries that we think come from linq. They have values ββt1, t2 ... tN, so we are sure that they are generated by linq. However, it is difficult for us to determine the location in the code that is the source of the request. Obviously, we have a general idea based on the requested tables and columns.
Is there a way to βtagβ or βnameβ a request so that it appears in the trace to make it easier to identify the request?
source
share