转换 lambda 表达式

发布于 2024-09-13 10:42:14 字数 348 浏览 2 评论 0原文

我有以下代码

Expression<Func<IPersistentAttributeInfo, bool>> expression = info => info.Owner== null;

,并希望将其转换为

Expression<Func<PersistentAttributeInfo, bool>> expression = info => info.Owner== null;

仅在运行时才知道的 PersistentAttributeInfo,但这

可能吗?

I have the following code

Expression<Func<IPersistentAttributeInfo, bool>> expression = info => info.Owner== null;

and want to tranform it to

Expression<Func<PersistentAttributeInfo, bool>> expression = info => info.Owner== null;

PersistentAttributeInfo is only known at runtime though

Is it possible?

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

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

发布评论

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

评论(1

养猫人 2024-09-20 10:42:14

如果 PersistentAttributeInfo 仅在运行时已知,那么您显然无法静态编写 lambda 并让编译器为您完成繁重的工作。您必须从头开始创建一个新的委托:

Type persistentAttributeInfoType = [TypeYouKnowAtRuntime];
ParameterExpression parameter = Expression.Parameter(persistentAttributeInfoType, "info");
LambdaExpression lambda = Expression.Lambda(
    typeof(Func<,>).MakeGenericType(persistentAttributeInfoType, typeof(bool)), 
    Expression.Equal(Expression.Property(parameter, "Owner"), Expression.Constant(null)),
    parameter);

您可以调用 lambda.Compile() 来返回一个委托,该委托类似于示例中转换后的 lambda 表达式(当然,它是无类型的)。

If PersistentAttributeInfo is only known at runtime, you obviously cannot write the lambda statically and have the compiler do the heavy lifting for you. You'll have to create a new one from scratch:

Type persistentAttributeInfoType = [TypeYouKnowAtRuntime];
ParameterExpression parameter = Expression.Parameter(persistentAttributeInfoType, "info");
LambdaExpression lambda = Expression.Lambda(
    typeof(Func<,>).MakeGenericType(persistentAttributeInfoType, typeof(bool)), 
    Expression.Equal(Expression.Property(parameter, "Owner"), Expression.Constant(null)),
    parameter);

You can invoke lambda.Compile() to return a Delegate that is analogous to the transformed lambda expression in your example (though of course untyped).

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