将 lambda 表达式转换为字符串

发布于 2024-10-10 12:26:59 字数 403 浏览 1 评论 0 原文

这似乎是一个奇怪的请求,但是对于需要过滤器属性字符串的 API,我认为能够转换提供的类型安全 lambda 表达式,然后将其编译为查询字符串,这将是一个很好的概念 - 本质上类似于林克-> SQL。

例如:

 Func<TQueryObj, bool> 
 (invoice) => { invoice.Status == "DRAFT" && invoice.Type == "ACCREF" };

将转换为

 Status=="DRAFT" && Type=="ACCREF"

我目前正在使用发票 API,因此是示例。有什么方法可以相当简单地实现这一目标吗?

干杯

This may seem like an odd request, however with APIs that require a filter property string I thought it would be a nice concept to be able to convert a provided type safe lambda expression which could then be compiled into a query string - similar in essence to Linq -> SQL.

So for example:

 Func<TQueryObj, bool> 
 (invoice) => { invoice.Status == "DRAFT" && invoice.Type == "ACCREF" };

Would convert to

 Status=="DRAFT" && Type=="ACCREF"

I'm using an invoicing API at the moment hence the example. Any means of achieving this fairly simply?

Cheers

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

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

发布评论

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

评论(1

后知后觉 2024-10-17 12:26:59

您需要创建一个继承的 ExpressionVisitor,它将递归地爬取 Expression>
这并不容易。

You need to make an inherited ExpressionVisitor, which will recursively crawl through an Expression<Func<...>>.
It won't be easy.

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