为什么我的 LINQ 语句返回 IEnumerable?

发布于 2024-08-02 07:41:32 字数 399 浏览 7 评论 0 原文

我有两个非常相似的方法:

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 具有延迟执行等功能,我仍然可以获得此好处吗?

I have two very similar methods:

public IQueryable<User> Find(Func<User, bool> exp)
{
    return db.Users.Where(exp);
}

public IQueryable<User> All()
{
    return db.Users.Where(x => !x.deleted);
}

The top one, will not compile, saying it returns IEnumerable rather than IQueryable.

Why is this?

Also, I am aware I can add "AsQueryable()" on the end and it will work. What difference does that make though? Any performance hits? I understand that IQueryable has deferred execution and such, will I still get this benefit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反差帅 2024-08-09 07:41:32

Enumerable.Where 采用 Func

Queryable.Where 采用Expression>

您使用 Func 调用Where,因此只有 Enumerable.Where 调用适用,并且返回 IEnumerable代码>.

把你的方法改成:

public IQueryable<User> Find(Expression<Func<User, bool>> exp)
{
    return db.Users.Where(exp);
}

应该就可以了。基本上,您希望传递表达式树而不是委托,以便表达式可以转换为 SQL。

Enumerable.Where takes Func<T, bool>.

Queryable.Where takes Expression<Func<T, bool>>.

You're calling Where with a Func<T, bool>, therefore only the Enumerable.Where call is applicable, and that returns IEnumerable<T>.

Change your method to:

public IQueryable<User> Find(Expression<Func<User, bool>> exp)
{
    return db.Users.Where(exp);
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文