1

I have two variants adding data using Model. Which variant is more rignt ?

Especially I want to ask about this $slider->setDataChanges(true);in first variant because I must set up _hasDataChanges = true if I want to save data.

1.Variant enter image description here

2.Variant

enter image description here

1 Answer 1

0

As per Magento standard, the second option is right to add a new record to an entity using the repository.

If you want to update exist then you have to load the record by a primary key using getById()

$slider = $this->sliderRepository->getById('PKID');

$this->sliderRepository->save($slider);

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.