具有内联值的 Linq 表达式字符串

发布于 2024-09-16 13:35:15 字数 271 浏览 1 评论 0原文

我正在尝试构建与 IOC 扩展 nHydrate 一起使用的表达式字符串。当我在表达式上调用 ToString() 时,我得到如下信息:

employee => employee.Username == value( Some type name here )

有没有办法将该值调用解析为实际值?

employee => employee.Username == "Captain Spiffy"

I am trying to build expression strings for use with IOC extended nHydrate. When I call ToString() on my expression I get something like this:

employee => employee.Username == value( Some type name here )

Is there a way to resolve that value call to the actual value?

employee => employee.Username == "Captain Spiffy"

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

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

发布评论

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

评论(1

浮萍、无处依 2024-09-23 13:35:15

执行 ToString() 只会获取最终表达式结果,如果它是真正的表达式树,就像表达式>然后您可以使用 Expression Visitor 类遍历表达式树。确保这不是一个 Func!

——法赫德

Doing a ToString() would only fetch you the end expression result, If it is a real expression tree, Like a Expression> then you can traverse the expressions tree using the Expression Visitor class. Make sure this is not a Func!

-Fahad

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