/**
  * {@inheritdoc}
  *
  * @throws SimpleDbException
  */
 protected function build()
 {
     parent::build();
     $this->request->getQuery()->set('ItemName', $this->get('item_name'));
     foreach ($this->getAll('/^Attribute(Name)*\\.[0-9]+.*$/', Collection::MATCH_REGEX) as $key => $value) {
         $this->request->getQuery()->set($key, $value);
     }
 }
 /**
  * {@inheritdoc}
  */
 protected function build()
 {
     parent::build();
     $this->request->getQuery()->merge($this->batched->getItems(true));
 }