作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以将有关本地评估表达式的 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/
我是一名优秀的程序员,十分优秀!