具有内联值的 Linq 表达式字符串
我正在尝试构建与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 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