Sadece Jaimin'in cevabını açıklığa kavuşturmak için:
Bu herhangi bir varlık için işe yarar.
Bu doğru değil. Yalnızca genişleyen EAV varlıkları için çalışırMagento\Eav\Model\Entity\AbstractEntity
Kaynak modelinin uzandığı EAV olmayan bir varlıkla uğraşıyorsanız yöntemi kaynak modelinize Magento\Framework\Model\ResourceModel\Db\AbstractDb
uygulamanız saveAttribute
gerekir.
Magento 2'de bunu Magento\Sales\Model\ResourceModel\Attribute
sınıf için yaptılar :
public function saveAttribute(AbstractModel $object, $attribute)
{
if ($attribute instanceof AbstractAttribute) {
$attributes = $attribute->getAttributeCode();
} elseif (is_string($attribute)) {
$attributes = [$attribute];
} else {
$attributes = $attribute;
}
if (is_array($attributes) && !empty($attributes)) {
$this->getConnection()->beginTransaction();
$data = array_intersect_key($object->getData(), array_flip($attributes));
try {
$this->_beforeSaveAttribute($object, $attributes);
if ($object->getId() && !empty($data)) {
$this->getConnection()->update(
$object->getResource()->getMainTable(),
$data,
[$object->getResource()->getIdFieldName() . '= ?' => (int)$object->getId()]
);
$object->addData($data);
}
$this->_afterSaveAttribute($object, $attributes);
$this->getConnection()->commit();
} catch (\Exception $e) {
$this->getConnection()->rollBack();
throw $e;
}
}
return $this;
}