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?
builder.not(root.get({field_name}).in(seqs))
seqs is collection.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With