Category "doctrine"

Doctrine ORM "Multiple non-persisted new entities were found through the given association graph:"

$added_obj = []; foreach ($something as $data) { $obj = $this->class->function($data, $par2); if (null !== $obj && !(array_key_exists

Mark an individual Doctrine migration as ran/executed

Is there a way that I can mark a Doctrine migration as "ran" or "executed" in the way that it won't be shown as a migration that needs to be migrated? app/cons

insert ignore on duplicate entries in Doctrine2/Symfony2

How to ignore on duplicate entries using Doctrine2? Error example: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'symfony' for key 'UN

Doctrine LIKE case insensitive

is it possible to make a search with Doctrine case insensitive?