I would like to start developing with Zend Framework and I would like to use zf2. Since I use Doctrine 2, can you suggest some tutorials to help me to integrate it in zf2? Thanks!

link|improve this question
feedback

2 Answers

up vote 10 down vote accepted

There is an officially supported Doctrine Module for ZF2 now:

Jason Grimes wrote a tutorial featured on phpdeveloper.org which should point you into the right direction.

Basically your way goes like this:

  • drop in the DoctrineModule in your /vendors folder to get the command-line-tool running
  • drop in the DoctrineORMModule in your /vendors folder to get ORM support in your project
  • configure doctrine via /config/autoload to give the module the project-specific settings
  • add an entity to your project
  • add the EntityManager into your DI configuration
link|improve this answer
thanks... this tutorial has been very helpful! – flux Feb 28 at 10:46
feedback

Update:

I researched this a little further and it sounds like native support for Doctrine 2 in Zend Framework 2 is still in the works. I recommend keeping an eye on this Github Gist to monitor how the progress is coming along.

In the meantime, you might want to check out the repository zf2-doctrine-provider from Michiel Staessen. There's no documentation for it yet, but it would be a logical next-step once you're up to speed on how the Bisna library works in ZF 1.x.

I'm encouraged to see that most of the discussion around ZF2 native support for Doctrine has been focused on flexibility. It's my hope (and apparently others too) that using Doctrine in Zend Framework won't be an either/or choice but rather an option for building specific portions of a solid and flexible domain model.

Original Post:

Fortunately most of the main resources for learning ZF 1.x + Doctrine took into account the migration to ZF2. They don't cover native support for Doctrine in ZF2, but they should help you get started with many of the main principles.

Zendcasts has an excellent Doctrine 2 tutorial series starting with "Unit Testing Doctrine 2 Entities." Be sure to watch the videos that follow it also, as Jon L. (the presenter) continued to incorporate best practices as he progressed through the videos.

Zend Technologies has a definitive webinar titled "Zend Framework v1 + Doctrine v2". The presenters specifically discuss how they structured the sample application to accommodate the ZF2 migration.

As for ZF2 native support, I haven't found anything yet either. Rob Allen's well-known ZF2 tutorial uses Zend\Db and there's no Doctrine coverage (yet) in Nick Belhomme's "Zend Framework 2.0 Cookbook."

Good luck getting started and please post any good resources you find on ZF2/D2.

link|improve this answer
2  
The Webinar from Jon. L. is really great. It helped me too integrating Doctrine2 and Zend Framework 1.10.11. BUT you should be aware that the Bisna 'glue' from 'Nolasnowbal' only works with Doctrine 2.0. If you want to integrate Doctrine 2.1. in a Zend Framework project you should use this fork: github.com/guilhermeblanco/ZendFramework1-Doctrine2 if you want help with the new version by an example just reply :) – Kees Schepers Oct 24 '11 at 6:50
Kees is definitely correct. The post "How do I configure Bisna for use with Doctrine 2.1..." (link below) helped me a lot with making the Bisna upgrade work seamlessly. – cantera25 Oct 24 '11 at 8:01
Stack Link: stackoverflow.com/questions/6896200/… – cantera25 Oct 24 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

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