build method

Query build ()

Implementation

Query build() {
  _createBuilder();

  if (0 == _queryCondition.apply(this, true)) {
    _throwExceptionIfNecessary();
  }

  try {
    return Query<T>._(_store, _fbManager, _cBuilder, _entityId);
  } finally {
    checkObx(bindings.obx_qb_close(_cBuilder));
  }
}