existsValue function

MssqlExistsValue existsValue(
  1. MssqlSelectQuery query, {
  2. bool negated = false,
})

EXISTS (SELECT …) as a projectable bit.

Implementation

MssqlExistsValue existsValue(MssqlSelectQuery query, {bool negated = false}) =>
    MssqlExistsValue(query, negated: negated);