whereMatchesQuery method

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

The value of key must match query.

Implementation

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