orWhereJsonDoesntContain method
OR WHERE NOT JSON_CONTAINS(column, value, path)
Implementation
@override
QueryBuilderInterface<T> orWhereJsonDoesntContain(
String column,
value, [
String? path,
]) {
_wheres.add({
'type': 'JsonDoesntContain',
'column': column,
'value': value,
'path': path,
'boolean': 'OR',
});
_whereBindings.add(value);
if (path != null) {
_whereBindings.add(_jsonPath(path));
}
return this;
}