public function getRowByProxiedRow($proxiedRow)
 {
     $id = $proxiedRow->{$this->getPrimaryKey()};
     if (isset($this->_cacheRows[$id])) {
         return $this->_cacheRows[$id];
     }
     return parent::getRowByProxiedRow($proxiedRow);
 }