gpt4 book ai didi

c# - 如何将有关本地评估表达式的 EF Core 警告转为错误?

转载 作者:行者123 更新时间:2023-11-30 22:52:52 24 4
gpt4 key购买 nike

是否可以将有关本地评估表达式的 Entity Framework Core 警告转换为错误?我想强制自己始终编写正确评估的查询。

Microsoft.EntityFrameworkCore.Query:Warning: The LINQ expression '(...)' could not be translated and will be evaluated locally.

最佳答案

I'd like to force myself to always write properly evaluated queries.

听起来不错。此外,客户评估的想法被认为是错误的,will be removed in EF Core 3.0+ , 所以最好做好准备:)

要在 3.0 之前的版本中获得所需的行为,您应该使用 ConfigureWarnings将默认操作从 Log 更改为 Throw 的扩展方法,如 Optional behavior: throw an exception for client evaluation 中所述文档主题:

optionsBuilder.ConfigureWarnings(warnings => warnings
.Throw(RelationalEventId.QueryClientEvaluationWarning)
);

此外,最好对 Ignored includes 做同样的事情,这是意外问题的另一个来源:

.Throw(RelationalEventId.QueryClientEvaluationWarning)
.Throw(CoreEventId.IncludeIgnoredWarning)

关于c# - 如何将有关本地评估表达式的 EF Core 警告转为错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57737611/

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