Skip to content
Advertisement

Symfony : How to fetch all object data from entity related with oneToMany relationship

I have “Car” and “Booking” entities related with oneToMany relationship :

JavaScript

JavaScript

JavaScript

When dump $booking variable in the twig or in the index page which list all bookings, every car object in booking object has only the id field, others are null ! I want to get every field of car object related to booking full of data to show it in the twig view ! in the method book I get the id variable sent with request and put it with setCar method, should I create a query to search byId and affect every attribute one by one !!

dump image

Advertisement

Answer

That kind of relation is in lazy loading by default. So since you didn’t call any getter of the car object, you only have the id displayed (since it’s stored in the booking object too). But this is only in the context of the dump, as soon as you’ll try to use a getter of the car (except getId) it will load the rest.

If you really need the whole car data to be loaded with the booking data, you can use fetch="EAGER" in the ManyToOne relation, but you would need a valid reason to do that.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement