isNotInQuery method

Expression<bool> isNotInQuery(
  1. BaseSelectStatement select
)

An expression checking whether this is not included in any row of the provided select statement.

The select statement may only have one column.

Implementation

Expression<bool> isNotInQuery(BaseSelectStatement select) {
  _checkSubquery(select);
  return _InSelectExpression(select, this, true);
}