notExistsQuery function

Expression<bool> notExistsQuery(
  1. BaseSelectStatement select
)

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);
}