whereNotExists method
Implementation
@override
QueryBuilder whereNotExists(
QueryCallback callback, {
String boolean = 'and',
}) {
return whereExists(callback, boolean: boolean, not: true);
}
@override
QueryBuilder whereNotExists(
QueryCallback callback, {
String boolean = 'and',
}) {
return whereExists(callback, boolean: boolean, not: true);
}