We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22046c commit 6184e7fCopy full SHA for 6184e7f
src/ORM/LazyLoadEntityTrait.php
@@ -2,6 +2,7 @@
2
namespace JeremyHarris\LazyLoad\ORM;
3
4
use Cake\Datasource\RepositoryInterface;
5
+use Cake\ORM\Association\BelongsTo;
6
use Cake\ORM\Entity;
7
use Cake\ORM\Table;
8
use Cake\ORM\TableRegistry;
@@ -128,7 +129,10 @@ protected function _lazyLoad($property)
128
129
->associations()
130
->getByProperty($property);
131
- if ($association === null || $this->get($association->getBindingKey()) === null) {
132
+ // is belongsTo and missing FK on this table? loadInto tries to load belongsTo data regardless
133
+ $isMissingBelongsToFK = $association instanceof BelongsTo && !isset($this->_fields[$association->getForeignKey()]);
134
+
135
+ if ($association === null || $isMissingBelongsToFK) {
136
return null;
137
}
138
0 commit comments