existsQuery function

Expression<bool> existsQuery(
  1. BaseSelectStatement select
)

The EXISTS operator checks whether the select subquery returns any rows.

Implementation

Expression<bool> existsQuery(BaseSelectStatement select) {
  return _ExistsExpression(select, false);
}