Is there a way I can view the Entity Sql (eSQL) that my Linq-to-entities queries are generating with EF framework (that is, not native SQL, but eSQL, if that makes sense?)
Thanks!
|
Is there a way I can view the Entity Sql (eSQL) that my Linq-to-entities queries are generating with EF framework (that is, not native SQL, but eSQL, if that makes sense?) Thanks! |
|||
|
|
You can cast the query1 into ObjectQuery and use the ToTraceString method to see the query.
|
|||
|
|
|
You can't. It is not generated. |
|||
|
|