2725 search results for Doctrine

... https://github.com/doctrine/doctrine2/issues/5933#issuecomment-328925708. This "entity manage is closed" was never a problem I ran into, so I can't verify that it's fixed now, but I believe it is. Even if you inject the ...
weaverryan
weaverryan
Read Full Comment
Hey Victor, Thanks for the reply. Yes, I am talking about migrating legacy app which already has some data to Symfony and Doctrine and the legacy database already includes the 'link table' and all tables are populated ...
Laravel Nick
Laravel Nick
Read Full Comment
... \Doctrine\HashPasswordListener autowire: true tags: - { name: doctrine.event_subscriber } app.form.help_form_extension: class: AppBundle\Form\TypeExtension\HelpFormExtension ...
Hi Diego! Nice find! It's a new feature in Doctrine, and not one that I've used yet. It looks like a mixture of "Lifecycle callbacks" (where the "callback" is always inside of the entity class) and an event listener ...
weaverryan
weaverryan
Read Full Comment
... can't be handled invisibly by Doctrine? I'm thinking I need to create a new repository function for this particular query - but I'm not quite sure how the expression engine syntax will reference it. Thanks, John
... Security objects. Doctrine checks exactly for this, but the exception it throws is honestly not quite as clear as it could be. Hopefully this unblocks you :D. Cheers!
weaverryan
weaverryan
Read Full Comment
... doctrine to write those three entities in the same time. - I have already made the may-to-one relations from last category entity to manufacturer, gave fields passing right Object to 'set' methods in entities I sow in this ...
... Person and Address (/**@ORM\Table(name="person") @ORMEntity() */ /**@ORM\Table(name="address") @ORMEntity() */) When I do doctrine:migrations:diff i get the error: [Doctrine\ORM\ORMException ...
Ferdinand geerman
Ferdinand geerman
Read Full Comment
... said), you can get a better idea of how to achieve it here: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/association-mapping.html#many-to-many-self-referencing but I don't think you need to ...
MolloKhan
MolloKhan
Read Full Comment
... legacy projects which have big data. First of all, you need to use a library to generate URI-compatible slugs, and then you need a custom logic written in PHP to make those slugs unique. So doing all of this in Doctrine ...
... want to continue y/N ?y > purging database > loading Doctrine\Bundle\FixturesBundle\EmptyFixture > loading AppBundle\DataFixtures\ORM\LoadFixtures ``` Oh, I also forgot to mention that I switched over to using the ...
... last is "Doctrine Collections" I think, but it's probably not very important because we often make some changes after previous course before starting a new course, so better to download the initial course code and start ...
... ); } return $this; } ``` Because this is a ManyToMany relationships, Doctrine will automatically see that some tags are now removed from postTags and it should delete those rows :). Cheers!
weaverryan
weaverryan
Read Full Comment
... this also removes the ability to inject dependencies into your repository (http://jmsyst.com/bundles/JMSDiExtraBundle/master/doctrine). Try the config to see if it helps. I believe this is a bug in JMSDiExtraBundle - a bug ...
weaverryan
weaverryan
Read Full Comment
... proxy class. I don't see that in my config (I tried on this project). So, I have a few questions: A) If you run `./bin/console debug:container doctrine.orm.default_entity_manager`, what is the class? Is it Doctrine\ORM ...
weaverryan
weaverryan
Read Full Comment
... credentials: ``` // Doctrine DBAL $this->register(new DoctrineServiceProvider(), array( 'db.options' => array( 'driver' => 'pdo_mysql', 'host' => 'localhost ...
... \Doctrine\ORM\EntityManager" ["existsStatus":"Symfony\Component\Config\Resource\ClassExistenceResource":private]=> int(0) } ``` I was not able to understand more from here.. or to change it..
Igor Weigel
Igor Weigel
Read Full Comment
... configuration happens in app/config.yml - you can see: ``` doctrine: dbal: driver: pdo_sqlite path: %kernel.root_dir%/app.db ``` So as you can see we use SQLite DB for this course, and after you ...
... auto_generate_proxy_classes: false + Does this configuration under orm désactive cache, by setting "auto_generate_proxy_classes" to "false", any explination about this config ? + Does caching made the app behaving more faster ? 3)Same question about this configuration (any explanation !) doctrine: orm: metadata_cache_driver: apc
... you still will have *User* object which is autocompleted as Genus object, because there's no magic, getGenusScientists() return collection of genusScientists, i.e. users according to the Doctrine mapping for Genus ...