It would be very nice to raise an error when one call ```php \count($entity->getSomethingThatIsACollection()) ``` It's an error because doctrine will 1. fetch all data from the DB 2. hydrate everything 3. and finally call `count()` on the results => It will kill the performance when the collection is big