ICriteria 表达限制
应该如何使用 NHibernate 的 ICriteria API 编写以下查询:
DetachedCriteria criteria = DetachedCriteria.For<Order>()
.Add(Restrictions.Eq("Property1 + Property2", confirmation.Ammount));
我需要的是将表达式 (Property1 + Property2) 与给定值 (confirmation.Ammount) 进行比较。
我正在使用 NHibernate 2.0(目前无法切换到较新的版本)。
谢谢
How should be written the following query with the NHibernate's ICriteria API:
DetachedCriteria criteria = DetachedCriteria.For<Order>()
.Add(Restrictions.Eq("Property1 + Property2", confirmation.Ammount));
What I need is to compare an expression (Property1 + Property2) to given value (confirmation.Ammount).
I'm using NHibernate 2.0 (I can't switch to newer version at the moment).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项 1
选项 2
编写自己的投影 请参阅此处
option 1
option 2
writing your own Projection see here