Greetings,
I am new to trying more advanced filtering with the predicate logic. Can anyone help me translate this query into predicate logic:
select * from a where not exists (select 1 from b where b.key=a.key)
(or achieve the same goal which is selecting all rows from an entity that are not related to by another entity).
Thanks!