从委托过滤器表达式获取对象表达式>

发布于 2025-01-02 02:19:13 字数 513 浏览 2 评论 0 原文

使用 lambda 委托表达式> - 我的表达式采用角色对象(PO​​CO)。

希望使用 POCO Role 对象并将其映射到具有匹配属性的数据层 Role 对象。为此,我需要能够从委托获取 Role 对象。

示例:

public List<Role> FindAll(Expression<Func<Role, bool>> filter)

像这样调用此方法:

FindAll(r => r.Name == role.Name);

r 是 Role 类型,在 FindAll 函数中,我可以看到过滤器有一个参数,如下所示:

在此处输入图像描述

我可以提取该对象吗?又如何呢?

我确信它一定是可行的,毕竟 linq 一直在内部执行它......

Using lambda delegate Expression> - where my expression takes a Role object (POCO).

Looking to use that POCO Role object and map it to a data layer Role object with matching properties. To do that, I need to be able to get the Role object from the delegate.

Example:

public List<Role> FindAll(Expression<Func<Role, bool>> filter)

Calling this method like:

FindAll(r => r.Name == role.Name);

r is type Role, and within the FindAll function, I can see that filter has one parameter, as such:

enter image description here

Can I extract that object? And how?

I'm sure it MUST be doable, after all, linq does it internally all the time...

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

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

发布评论

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

评论(1

风情万种。 2025-01-09 02:19:13

这里有两个角色:r,它代表过滤器参数,以及role,它是一个由 lambda 表达式封闭的对象。我假设您的意思是您想要对 role 对象的引用,因为您已经找到了代表 rParameterExpression

该对象将是一个 ConstantExpression,其类型为 Role,并且它将是 MemberAccessExpressionExpression 属性的值code> 代表 role.Name。这将是表示相等测试的 BinaryOperator 表达式的右侧,用作 lambda 表达式的 Body

这是你所需要的吗?

There are two roles here: r, which represents the filter parameter, and role, which is an object that is closed over by the lambda expression. I assume you mean you want a reference to the role object, since you already found the ParameterExpression which represents r.

That object will be a ConstantExpression whose type is Role, and it will be the value of the Expression property of the MemberAccessExpression which represents role.Name. That will be the right-hand side of the BinaryOperator expression representing the equality test, which serves as the Body of the lambda expression.

Is that what you need?

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