protected function buildOrder() {
     if ($this->_sortColumn == "name") {
         $this->_selectBuilder->orderBy->add("au.firstname", $this->_sortAsc);
         $this->_selectBuilder->orderBy->add("au.lastname", $this->_sortAsc);
         return;
     }
     parent::buildOrder();
 }