“不在”使用 JPA 标准的约束
我正在尝试使用 JPA Criteria
编写 NOT IN
约束。 我尝试过这样的事情:
builder.not(builder.in(root.get(property1)));
虽然我知道它不会起作用。在上面的语法中,如何添加要检查的 property1
的集合/列表?
I am trying to write a NOT IN
constraint using JPA Criteria
.
I've tried something like this:
builder.not(builder.in(root.get(property1)));
though I know it will not work. In the above syntax, how can I add the collection / list against which property1
that will be checked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
builder.not(root.get({field_name}).in(seqs))
seqs 是集合。
builder.not(root.get({field_name}).in(seqs))
seqs is collection.