我正在尝试使用编写NOT IN约束JPA Criteria。我已经尝试过这样的事情:
NOT IN
JPA Criteria
builder.not(builder.in(root.get(property1)));
虽然我知道这行不通。在以上语法中,如何添加property1要检查的集合/列表?
property1
builder.not(root.get({field_name}).in(seqs)) seqs是集合。
builder.not(root.get({field_name}).in(seqs))