whereDoesNotMatchQuery method

LCQuery<T> whereDoesNotMatchQuery(
  1. String key,
  2. LCQuery<LCObject> query
)

The value of key must not match query.

Implementation

LCQuery<T> whereDoesNotMatchQuery(String key, LCQuery query) {
  condition.whereDoesNotMatchQuery(key, query);
  return this;
}