Can I use custom delegate method in Where method of Entity Framework?(我可以在实体框架的 Where 方法中使用自定义委托方法吗?)
问题描述
Where<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, bool>> predicate);
我将参数传递给 Where 方法如下: f =>f.Id >4代码>.我可以通过委托方法而不是
f.Id >4
?
I pass parameter to Where method as follows: f => f.Id > 4
.
Can I pass a delegate method instead of f.Id > 4
?
推荐答案
没有.
实体框架需要能够查看正在尝试的所有内容.
The Entity Framework needs to be able to see everything that is being attempted.
所以如果你只是做了这样的事情:
So if you simply did something like this:
queryable.Where(f => DelegateFunc(f));
DelegateFunc 的定义如下所示:
Where the definition of DelegateFunc looks like this:
public bool DelegateFunc(Foo foo)
{
return foo.Id > 4;
}
实体框架无法窥视委托内部,将其打开并将其转换为 SQL.
The Entity Framework has no way of peering inside the delegate, to crack it open and convert it to SQL.
但一切都没有丢失.
如果您的目标是重复使用常见的过滤器等,您可以这样做:
If your goal is to re-use common filters etc you can do something like this instead:
public Expression<Func<Foo, bool>> DelegateExpression{
get{
Expression<Func<Foo,bool>> expr = f => f.Id > 4;
return expr;
}
}
queryable.Where(DelegateExpression);
这篇关于我可以在实体框架的 Where 方法中使用自定义委托方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以在实体框架的 Where 方法中使用自定义委托方法吗?
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- c# Math.Sqrt 实现 2022-01-01