isInQuery method

Expression<bool> isInQuery(
  1. BaseSelectStatement select
)

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