Anton Stöckl
fa79de6ea4
Enable empty prefixes for inlined embeddable
This fixes http://www.doctrine-project.org/jira/browse/DDC-2987 This makes it possible to map a field from an embeddable to a database field with the same name, without any prefix added. Example: - an embeddable object "Id" with a property "id" - per default this would map inline to id_id - supplying null or '' as columnPrefix does not work due to the ! empty() check - with my little change, if columnPrefix : false is supplied in the mapping config this will now map to a db column "id" To build Ids as ValueObjects is a very common approach in DDD, so ihmo this is a must have.
Doctrine 2 ORM
Doctrine 2 is an object-relational mapper (ORM) for PHP 5.3.2+ that provides transparent persistence for PHP objects. It sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
More resources:
Languages
PHP
100%