gpt4 book ai didi

ef-core-5.0 - EFCore 5.0 拦截器语句类型

转载 作者:行者123 更新时间:2023-12-04 08:25:23 25 4
gpt4 key购买 nike

我已经实现了一个 DbCommandInterceptor,为生成的 SQL 添加了最大递归深度:

public override ValueTask<InterceptionResult<DbDataReader>> ReaderExecutingAsync(DbCommand command, CommandEventData eventData, InterceptionResult<DbDataReader> result, CancellationToken cancellationToken = default)
{
if (command.CommandText.StartsWith("SELECT") && !command.CommandText.EndsWith($" OPTION(MAXRECURSION {MaxRecursion})"))
{ command.CommandText += $" OPTION(MAXRECURSION {MaxRecursion})"; }

return base.ReaderExecutingAsync(command, eventData, result, cancellationToken);
}
当不检查 SQL 是否以 SELECT ( command.CommandText.StartsWith("SELECT") ) 开头时,我肯定会在更新语句中遇到异常(例如 context.SaveChanges() )。是否有更简洁的解决方案来检查查询类型?像命令上的枚举或类似的?
谢谢!

最佳答案

目前不支持,在 Github 上创建了功能请求:
https://github.com/dotnet/efcore/issues/23719

关于ef-core-5.0 - EFCore 5.0 拦截器语句类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65287475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com