notExistsQuery function
The NOT EXISTS
operator evaluates to true
if the select
subquery does
not return any rows.
Implementation
Expression<bool> notExistsQuery(BaseSelectStatement select) {
return _ExistsExpression(select, true);
}
The NOT EXISTS
operator evaluates to true
if the select
subquery does
not return any rows.
Expression<bool> notExistsQuery(BaseSelectStatement select) {
return _ExistsExpression(select, true);
}