Linq - 合并属性访问器表达式

发布于 2024-10-27 21:42:18 字数 213 浏览 0 评论 0原文

我有一个包含以下内容的 MemberExpressionmail =>; mail.SomeProperty

我想生成一个新的成员表达式来访问层次结构中更深的一层,并得到如下所示的结果: mail => mail.SomeProperty.OtherProperty

如何做到这一点?

I have a MemberExpression that contains the following: mail => mail.SomeProperty.

I want to generate a new member expression to access one level deeper in the hierarchy and have some result like the following: mail => mail.SomeProperty.OtherProperty.

How to do this?

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

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

发布评论

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

评论(1

娇妻 2024-11-03 21:42:18

我相信您可以使用 Expression.Property 构造一个新的 MemberExpression 来包装带有附加属性引用的现有表达式。它采用表达式作为第一个参数,该参数应该是原始的 MemberExpression。

I believe you can use Expression.Property to construct a new MemberExpression that wraps the existing expression with an additional property reference. It takes an Expression for the first argument, which should be the original MemberExpression.

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