whereDoesntHave<TChild> method
Keeps parents that have no matching related row.
Implementation
S whereDoesntHave<TChild>(
MssqlRelation<TRow, TChild> Function(TFields fields) relation,
) {
final rel = relation(fields);
return where((_) => MssqlExistsSubquery(_existsQuery(rel), negated: true));
}