Is there any way to in .NET to see what LINQ query against database we are firing? For eg. I am wring a query in LINQ and I want to see that what SQL query is firing to communic
You can use SQL Profiler to see how the LINQ expression is translated into SQL statement.