isInQuery method
An expression checking whether this is included in any row of the
provided select statement.
The select statement may only have one column.
Implementation
Expression<bool> isInQuery(BaseSelectStatement select) {
_checkSubquery(select);
return _InSelectExpression(select, this, false);
}