Eager load issue
I have a relation manager with eager load, i am using dot notation for the values, for some reason the data in a table shows in one row, instead of having a new row for each related data. Any help?
Solution:Jump to solution
What you want is probably a left join to actually get multiple rows instead of eager loading a relation ship (which gives you a collection on every row)
5 Replies
bump
Uhm. It’s a „column“ so it shows your values in one column. That’s how it’s intended. If you want to show different data you need to adjust the query.
i want to show array data in each single row, right now it shows everything in one row. so adjusting query will resolve the issue? if so could you please share some more information?
Solution
What you want is probably a left join to actually get multiple rows instead of eager loading a relation ship (which gives you a collection on every row)
Perfect, let me try left join
Thank you so much, left join resolve the issue.