isNotValue method
Generates an IS NOT expression in SQL, comparing this expression with
the Dart value.
This the inverse of isValue.
Implementation
Expression<bool> isNotValue(D value) {
return isNotExp(variable(value));
}
Generates an IS NOT expression in SQL, comparing this expression with
the Dart value.
This the inverse of isValue.
Expression<bool> isNotValue(D value) {
return isNotExp(variable(value));
}