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