Route binding and lazy load don't throw error in some cases #54619
Unanswered
abdel-aouby
asked this question in
Q&A
Replies: 2 comments 1 reply
-
Try setting this in your model to true If it works then it is an uncovered case/not implemented feature. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi, is this the same problem here? lazy loading exception:
no exception:
this is an unexpected behavior and should also throw the lazy loading exeption. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I have a question about a strange case regarding route binding and eager load
I have two routes
and a controller with 2 methods
the car model relationship methods looks like that
I have prevented lazy load in the appServiceProvider
like that everything works fine
->with('translation')
in the index method of the controller it will throw me errorwhich is understandable and is the desired result.
however, the strange thing for me is
show
method of the controller or in the blade templatecars.show
if I do
$car->translation
or$car->translations
it still works and does not throw an error even if I did not use->with('translation)
or->with('translations)
anywherecan someone please explain to me why?
is the exception for preventing lazy loading works only with multiple objects (e.g
Car::all
or/andCar::query
) and does not work when you have a single object like I have in theshow
method, because in the case of a single object the$car->translations
still perform only one query all the time and there is no N + 1 issue?is my understanding right or I'm missing something?
EDIT 1:
as suggested in the comment by @bulletproof-coding I added
protected static $modelsShouldPreventLazyLoading = true;
to myCar
model class. the same results as above are still happening. the error is not thrown in theshow
method of the controllerso I did some more digging into this..
I created a multi-level relationship to test the N + 1 issue. starting with a single object as I have in the
show
method aboveso I created
new route
Route::get('/configurator/{car}', [ConfiguratorController::class, 'index'])->name('configurator.index');
ConfiguratorCar model
so a car has multiple parts and each part has multiple values
so accessing the
$car->carParts
does not throw the exception (I guess because it is never N + 1 operation. it will all the time generate one query)bu accessing
$carPart->partValues
in a loop ofcarParts
will throw the exception because it is obviously an N + 1 issueIf I set the preventLazyLoading to
false
and take a look at the laravel debugger queries, we can see the N + 1 the is generated by$carPart->partValues;
inside the loopSo I think that this is not some error or missing/not caught case. rather than a desired result.
when accessing the relationship with lazy loading and it does not cause N + 1 issue, it does not throw the exception.
Beta Was this translation helpful? Give feedback.
All reactions