notLike function

NotCondition<LikeCondition> notLike(
  1. String pattern, [
  2. String? escape
])

Used in the whereValues of DBAccess.loadBy, DBAccess.queryBy, and sqlWhereBy to indicate a NOT Like clause.

See also like, inList and not.

Implementation

NotCondition<LikeCondition> notLike(String pattern, [String? escape])
=> NotCondition(LikeCondition(pattern, escape));