Jonathan Wage on Doctrine 2


What's new?




Tools


Architecture

Entities, Lightweight persitant domain objects. NO more imposing on your domain model, NO need to extend a base class like Doctrine_Base.
Entity Manager, the central access point to the ORM functionality.
Separate standalone package and namespace for the DBAL: Doctrine\DBAL.
Lotta Stuff extracted from the ORM to the DBAL.

NO more Magic, using the new Entity Manager

$user = new User;
$user->setName('Jonathan H. Wage');
$em->persist($user);
$em->flush();


Cache Drivers

New Cache Driver interface for wrapping Doctrine into your existing PHP Caches.


Talk von @jwage auf der SymfonyLive2010.

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki