Thank you so much! for making this video because it answered so many of the questions (and confusion about the 3 main classes and repositories) that I had as a new Magento developer. I can't thank you enough for your excellent channel and up-to-date Magento expertise.
@VildUlv2 жыл бұрын
Good video. Thank you.
@MaxPronko2 жыл бұрын
Thanks
@oleksiilisovyi38322 жыл бұрын
Thanks for the video, Max. I've noticed that while you're describing certaint point it would be super helpful to have some peace of code you're talking about in front of my eyes. E.g. you're talking about the customising SQL query with `getSelect()` it's not obvious, especially for the begginers (these dev are the main target audience), how to actually do that. So if you show something like $this->collectionFactory->create()->getSelect() it should be way easier to understand than when you just hear that.
@MaxPronko2 жыл бұрын
Thanks Oleksii. Noted for the next time.
@enggarshad832 жыл бұрын
It will be good if you share a blog related to this topic.
@drummykriss2 жыл бұрын
Hello So these 4 types are: - resource module - collection - repository module - sql queries by using "Magento\Framework\App\ResourceConnection" correct?
@MaxPronko2 жыл бұрын
Sounds like 👍
@taki1432 жыл бұрын
If its product , category or customer data usually I use collections. Super basic apis I use Repositories or Resources Models but in most other cases because of speed of development I use raw sql. even for fast bug fixes i use raw sql.. not the best but time to live us so much faster.