Hello,
I need to create a predicate that generates the following Where clause (ORACLE) :
WHERE NOT EXISTS (SELECT 1 FROM CUSTOMER WHERE STATUS = 'OK')
I tried with this predicate FieldCompareSetPredicate but it accepts only SetOperator.EXISTS but not the NOT EXISTS.
Any suggestions is welcom.
Thanks.