网站做广告投放 做销售线索预估,微信公众号里怎么做网站,鸣蝉建站平台,wordpress 自定义产品页面给 EF Core 查询增加 With NoLockIntroEF Core 在 3.x 版本中增加了 Interceptor#xff0c;使得我们可以在发生低级别数据库操作时作为 EF Core 正常运行的一部分自动调用它们。例如#xff0c;打开连接、提交事务或执行命令时。所以我们可以自定义一个 Interceptor 来记录执… 给 EF Core 查询增加 With NoLockIntroEF Core 在 3.x 版本中增加了 Interceptor使得我们可以在发生低级别数据库操作时作为 EF Core 正常运行的一部分自动调用它们。例如打开连接、提交事务或执行命令时。所以我们可以自定义一个 Interceptor 来记录执行的 sql 语句也可以通过 Interceptor 来实现 sql 语句的执行。这里我们可以借助 Interceptor 实现对于查询语句的修改自动给查询语句加 (WITH NOLOCK) WITH NOLOCK 等效于 READ UNCOMMITED读未提交的事务级别这样会造成一定的脏读但是从效率上而言是比较高效的不会因为别的事务长时间未提交而导致查询阻塞所以对于大数据场景下查询 SQL 加 NOLOCK 还是比较有意义的NoLockInterceptor继承 DbCommandInterceptor重写查询 sql 执行之前的操作在执行 sql 之前增加 WITH(NOLOCK)实现代码如下public class QueryWithNoLockDbCommandInterceptor : DbCommandInterceptor
{private static readonly Regex TableAliasRegex new Regex((?tableAliasAS \[[a-zA-Z]\w*\](?! WITH \(NOLOCK\))),RegexOptions.Multiline | RegexOptions.Compiled | RegexOptions.IgnoreCase);public override InterceptionResultobject ScalarExecuting(DbCommand command, CommandEventData eventData, InterceptionResultobject result){command.CommandText TableAliasRegex.Replace(command.CommandText,${tableAlias} WITH (NOLOCK));return base.ScalarExecuting(command, eventData, result);}public override TaskInterceptionResultobject ScalarExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResultobject result,CancellationToken cancellationToken new CancellationToken()){command.CommandText TableAliasRegex.Replace(command.CommandText,${tableAlias} WITH (NOLOCK));return base.ScalarExecutingAsync(command, eventData, result, cancellationToken);}public override InterceptionResultDbDataReader ReaderExecuting(DbCommand command, CommandEventData eventData, InterceptionResultDbDataReader result){command.CommandText TableAliasRegex.Replace(command.CommandText,${tableAlias} WITH (NOLOCK));return result;}public override TaskInterceptionResultDbDataReader ReaderExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResultDbDataReader result,CancellationToken cancellationToken new CancellationToken()){command.CommandText TableAliasRegex.Replace(command.CommandText,${tableAlias} WITH (NOLOCK));return base.ReaderExecutingAsync(command, eventData, result, cancellationToken);}
}
Interceptor 的使用在注册 DbContext 服务的时候可以配置 Interceptor配置如下var services new ServiceCollection();
services.AddDbContextTestDbContext(options
{options.UseLoggerFactory(loggerFactory).UseSqlServer(DbConnectionString).AddInterceptors(new QueryWithNoLockDbCommandInterceptor());
});
使用效果通过 loggerFactory 记录的日志查看查询执行的 sql 语句可以看到查询语句自动加上了 WITH(NOLOCK)Referencehttps://docs.microsoft.com/en-us/sql/t-sql/queries/hints-transact-sql-table?viewsql-server-ver15https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-3.0/#interception-of-database-operationshttps://docs.microsoft.com/zh-cn/ef/core/what-is-new/ef-core-3.0/#interception-of-database-operationshttps://github.com/WeihanLi/WeihanLi.EntityFramework/blob/dev/src/WeihanLi.EntityFramework/Interceptors/QueryWithNoLockDbCommandInterceptor.cs