Criteria API 中是否有类似 Restrictions.eq(true, false) 的内容?
我需要一个通用的Criterion
来强制结果为零匹配。
像 Restrictions.eq(true, false)
之类的东西?
I need a generic Criterion
which forces the result to zero matches.
Something like Restrictions.eq(true, false)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 NHibernate (C#) 中使用:
或在 Hibernate (Java) 中使用:
:-)
I use in NHibernate (C#):
or in Hibernate (Java):
:-)
在 Hibernate 中,您可以使用 sqlRestriction :
http://ajava.org/online/hibernate3api/org/hibernate/criterion/Restrictions.html#sqlRestriction(java.lang.String)
In Hibernate you might use
sqlRestriction
:http://ajava.org/online/hibernate3api/org/hibernate/criterion/Restrictions.html#sqlRestriction(java.lang.String)
我在休眠中使用了以下代码,它对我有用:
I used below code in hibernate and it worked for me: