"Not in" constraint using JPA criteria

28,602

builder.not(root.get({field_name}).in(seqs)) seqs is collection.

Share:
28,602

Related videos on Youtube

P.S.
Author by

P.S.

Updated on March 22, 2020

Comments

  • P.S.
    P.S. about 4 years

    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?

  • delbertooo
    delbertooo over 6 years
    Also possible: root.get({field_name}).in(seqs).not()