EF 6 參數嗅探解決方案:克服查詢超時
儘管LINQ to Entities 查詢產生的SQL 效率很高,但其執行透過EF 6 會導致持續查詢逾時。這可能是由於參數嗅探,這是資料庫引擎使用的效能最佳化技術。但您不能簡單地將「OPTION RECOMPILE」命令直接新增到 EF 查詢。
解決方案:利用 EF 攔截
EF 6 提供了攔截功能,允許您可以在 SQL 命令在資料庫上執行之前對其進行操作。透過實作自訂 DbCommandInterceptor,您可以為內部命令新增查詢提示,包括「OPTION RECOMPILE」。
以下是此類攔截器的實現:
public class OptionRecompileHintDbCommandInterceptor : IDbCommandInterceptor { public void ReaderExecuting(DbCommand command, DbCommandInterceptionContext<DbDataReader> interceptionContext) { addQueryHint(command); } public void ScalarExecuting(DbCommand command, DbCommandInterceptionContext<object> interceptionContext) { addQueryHint(command); } private static void addQueryHint(IDbCommand command) { if (command.CommandType != CommandType.Text || !(command is SqlCommand)) return; if (command.CommandText.StartsWith("select", StringComparison.OrdinalIgnoreCase) && !command.CommandText.Contains("option(recompile)")) { command.CommandText = command.CommandText + " option(recompile)"; } } }
使用此攔截器,只需將以下行添加到應用程式的開頭:
DbInterception.Add(new OptionRecompileHintDbCommandInterceptor());
這將確保所有EF 產生的SQL 命令附加了「OPTION RECOMPILE」提示,可防止參數嗅探並提高查詢效能。
以上是EF 6攔截如何解決參數嗅探導致的持久查詢逾時?的詳細內容。更多資訊請關注PHP中文網其他相關文章!