为什么我的 LINQ 语句返回 IEnumerable?
我有两个非常相似的方法:
public IQueryable<User> Find(Func<User, bool> exp)
{
return db.Users.Where(exp);
}
public IQueryable<User> All()
{
return db.Users.Where(x => !x.deleted);
}
第一个方法不会编译,说它返回 IEnumerable 而不是 IQueryable。
这是为什么呢?
另外,我知道我可以在末尾添加“AsQueryable()”,它会起作用。但这有什么区别呢?有什么表现上佳吗?我知道 IQueryable 具有延迟执行等功能,我仍然可以获得此好处吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Enumerable.Where
采用Func
。Queryable.Where
采用Expression>
。您使用
Func
调用Where,因此只有Enumerable.Where
调用适用,并且返回IEnumerable
代码>.把你的方法改成:
应该就可以了。基本上,您希望传递表达式树而不是委托,以便表达式可以转换为 SQL。
Enumerable.Where
takesFunc<T, bool>
.Queryable.Where
takesExpression<Func<T, bool>>
.You're calling Where with a
Func<T, bool>
, therefore only theEnumerable.Where
call is applicable, and that returnsIEnumerable<T>
.Change your method to:
and it should be okay. Basically you want to pass in an expression tree instead of a delegate, so that the expression can be converted to SQL.