notInQuery method

TableBuilder<BmobTable> notInQuery(
  1. BmobWhereBuilder where
)

不包含,where-只取where

Implementation

TableBuilder notInQuery(BmobWhereBuilder where) {
  assert(where._whereBasic.isNotEmpty);
  _json['\$notInQuery'] = {
    'where': jsonDecode(where.builder()['where']),
    'className': _t.getBmobTabName()
  };
  return this;
}