existsQuery function
The EXISTS
operator checks whether the select
subquery returns any rows.
Implementation
Expression<bool> existsQuery(BaseSelectStatement select) {
return _ExistsExpression(select, false);
}
The EXISTS
operator checks whether the select
subquery returns any rows.
Expression<bool> existsQuery(BaseSelectStatement select) {
return _ExistsExpression(select, false);
}