我們使用EF時候端的SQL可能是這樣
exec sp_executesql
N'SELECT * FROM AdventureWorks.HumanResources.Employee
WHERE ManagerID = @level',
N'@level tinyint',
@level = 109;
可以透過下面網址,將EF的SQL轉成簡單的SQL,變成一般的SQL.....select * from ...
使用此網址來做轉換
http://execsqlformat.herokuapp.com/
參考文章
https://stackoverflow.com/questions/1138402/easy-way-to-convert-exec-sp-executesql-to-a-normal-query
以上文章僅用紀錄資料使用.....