Skip to content

Commit 6184e7f

Browse files
committedOct 13, 2021
Handling missing foreign keys for belongsTo associations
1 parent a22046c commit 6184e7f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/ORM/LazyLoadEntityTrait.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
namespace JeremyHarris\LazyLoad\ORM;
33

44
use Cake\Datasource\RepositoryInterface;
5+
use Cake\ORM\Association\BelongsTo;
56
use Cake\ORM\Entity;
67
use Cake\ORM\Table;
78
use Cake\ORM\TableRegistry;
@@ -128,7 +129,10 @@ protected function _lazyLoad($property)
128129
->associations()
129130
->getByProperty($property);
130131

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) {
132136
return null;
133137
}
134138

0 commit comments

Comments
 (0)