Neos\Flow\Persistence\Generic\QueryResult::initialize PHP 메소드

initialize() 보호된 메소드

Loads the objects this QueryResult is supposed to hold
protected initialize ( ) : void
리턴 void
    protected function initialize()
    {
        if (!is_array($this->queryResult)) {
            $this->queryResult = $this->dataMapper->mapToObjects($this->persistenceManager->getObjectDataByQuery($this->query));
        }
    }