Execution Time

Hello!
I want to know about the execution time displayed at the bottom of LINQPad. What does it include besides the query execution itself? Is the SQL query generation a part of it? What else is there?
Thanks.

Comments

  • It's the execution time for the query, excluding compilation and any data context generation. If it's a LINQ-to-SQL query, then it will include the time to generate the SQL.