Skip to content

Instantly share code, notes, and snippets.

@afurculita
Last active June 26, 2017 19:23
Show Gist options
  • Save afurculita/86f30be7232955626f82b7931f96759a to your computer and use it in GitHub Desktop.
Save afurculita/86f30be7232955626f82b7931f96759a to your computer and use it in GitHub Desktop.
Beware of lazy loading when querying entities with associations
<?php
$articles = $article_repository->findAll();
foreach($articles as $article)
{
echo $article->getTitle();
echo count($article->getComments());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment