public function convert($results)
{
$aliasToOffset = $this->_createAliasToOffsetMap();
$joinsToStore = FluentArray::from($this->joinedModels)->filter(Functions::extract()->storeField())->uniqueBy(Functions::extract()->destinationField())->toArray();
$models = array();
foreach ($results as $row) {
$models[] = $this->convertRowToModel($row, $aliasToOffset, $joinsToStore);
}
return $this->_fetchRelations($models, $joinsToStore);
}