up vote 6 down vote favorite
share [g+] share [fb]

Outside of the source code, is there any extensive documentation on the Magento ORM? I get the basics, and can usually dig through the Mage code base, litter it with Mage::Log calls and figure out something that works, but my efficiency would go way up if I had a high level overview of how the models are intended to be used. How do the aggregate methods work, what's the best way to join, when should you extend the models, when's the best time to use the eav models vs. the non-eav ones, etc.

Something like the Django Model Documentation, but for Magento.

link|improve this question

2  
Id love to hear an answer for this too. The documentation for Magento is sorely lacking. – Rick J Apr 22 '09 at 10:30
2  
For anyone looking, I ended up partially solving this problem myself. alanstorm.com/category/magento – Alan Storm Sep 11 '10 at 18:52
feedback

2 Answers

up vote 3 down vote accepted

For the Magento ORM which is based off of Zend Framework's Zend_Db_Adapter , you can use the Zend Framework Programmers Reference (Available as a free pdf on Zend Framework's site ). I also found this link helpful for learning more about Magento models.

link|improve this answer
2  
Good info, but not quite what I'm looking for. Magento uses Zend_Db_Adapter to make all its database calls, but the actual ORM (mapping database table to objects) inherits from the core Varian Object. The ORM uses Zend_Db_Adapter to talk to databases. I'm interested in documentation of the ORM itself (if it exists and if doesn't vary wildly between Models) – Alan Storm Apr 30 '09 at 22:51
feedback

While there isn't much documentation on the ORM, here were a few pages that greatly helped in my understanding of the database structure which will help you understand everything else:

http://www.magentocommerce.com/wiki/development/magento_database_diagram http://www.magentocommerce.com/boards/viewthread/7359/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.