You can use the following code:
var query = from c in Customers select c;string sql = ((ObjectQuery)query).ToTraceString();
Have a look at the following information: Retrieving the SQL generated by the Entity Provider.
You can use the following code:
var query = from c in Customers select c;string sql = ((ObjectQuery)query).ToTraceString();
Have a look at the following information: Retrieving the SQL generated by the Entity Provider.