Hi,
On Cakephp 4.2, I can use propertyName
to set my association-name. It doesn’t seem to work on the latest 4.3 and not in the ORM-Table-document. but stated in cake4 ORM document
In 4.3 entity, the associated name that works is address
although I specify Address
in the Modal-Table
// In Modal-Table
$this->belongsTo('Address', [
'className' => 'Addresses',
'propertyName' => 'Address',
'foreignKey' => 'address_id',
]);
Is it still there or there is a replacement ?