Skip to content

LinkType enum

Represents type of linking of conditions in group (predicate).

NameValueDescription
All3All conditions must be truth, in result SQL they are connected by AND operator;
Any1At least one condition must be truth. In SQL they are connected by OR operator.
None0None of the conditions must be truth (all must be false).
In SQL it will look like: NOT (Condition1 OR Condition2 OR ...).
NotAll2Not all conditions must be truth (at least one must false).
In SQL it will look like: NOT(Condition1 AND Condition2 AND ...).