2725 search results for Doctrine

Hi Andrés! Hmm, that usually means that you are trying to persist and entity (e.g. Genus) - but Doctrine does not think it's an entity. For example, if you mistakenly put `Genus` in a directory called `Model` instead ...
weaverryan
weaverryan
Read Full Comment
... versions of doctrine/migrations and doctrine/doctrine-migrations-bundle have gotten in a conflicting state. Updating them, or removing and re-adding should do the trick. But let me know :). Cheers!
weaverryan
weaverryan
Read Full Comment
... new libraries versions Before you do that you'll have to update the fixture class that comes with the course code. Inside `src/DataFxitures/AppFixtures.php` change line 6 `Doctrine\Persistence\ObjectManager` to this `use ...
MolloKhan
MolloKhan
Read Full Comment
Hey Rakodev! Hmm, that's true - and I should have mentioned that... and so we might need a note. But question, by "entity", do you mean specifically "Doctrine entity" or are you just using that to mean "model class ...
weaverryan
weaverryan
Read Full Comment
Hey Michael! That wasn't on purpose, but it makes for a great question :). The answer is: it doesn't matter (but it does need to be before flush). When you call persist(), it basically tells Doctrine: "Hey, be aware ...
weaverryan
weaverryan
Read Full Comment
... "app.security.login_form_authenticator": argument "$em" of method "AppBundle\Security\LoginFormAuthenticator::__construct()" references class "Doctrine\ORM\EntityManager" but no such service exists. Try changing the type-hint to ...
Thanks for your answer! But in WebTestCase or even KernelTestCase, container does not have doctrine service, what is indicating that I need to register DoctrineBundle, right? But where do I register the Doctrine bundle ...
Lucas Baldassari
Lucas Baldassari
Read Full Comment
Hi, Great videos, Ryan. During a composer recipes:update and getting back the following list: ` [0 ] liip/imagine-bundle [1 ] stof/doctrine-extensions-bundle [2 ] symfony/apache-pack [3 ] symfony/flex [4 ...
... who are still stuck on this. Using composer in your terminal, make sure to install the nelmio/alice "2.1.4" version, and the doctrine-fixtures-bundle "2.3" version. ``` composer require --dev nelmio/alice "2.1.4 ...
... " (represented by an abstract syntax tree - AST) into the actual SQL. In essence, this the actual code that turns the AST into the actual query string. Here's the default walker: https://github.com/doctrine/doctrine2/blob/master ...
weaverryan
weaverryan
Read Full Comment
... =dev APP_SECRET=1c78f3e5e06eb3c88a52819fbccdba6e #TRUSTED_PROXIES=127.0.0.1,127.0.0.2 #TRUSTED_HOSTS='^localhost|example\.com$' ###< symfony/framework-bundle ### ###> doctrine/doctrine-bundle ### # Format ...
... container port. # See https://docs.docker.com/compose/compose-file/#ports for more information. - '3306' ``` and my .env ``` # ... ###> doctrine/doctrine-bundle ### # Format described at https://www.doctrine ...
Rooarii MANUEL
Rooarii MANUEL
Read Full Comment
Hey there! I see what you mean, but it's incorrect to think that Doctrine is garbage just because it does not have extra columns on many-to-many relationship. Well, first of all, any ManyToMany relationship is just 2 ...
... " The command $ bin/console prints : [...] doctrine doctrine:cache:clear-collection-region Clear a second-level cache collection region doctrine:cache:clear-entity-region Clear a second ...
... to do is generating a set of Doctrine entity classes from your existing database. Once you have done this, you only need to add the `@ApiResource` annotation to convert the entity class into an API resource. The tool ...
weaverryan
weaverryan
Read Full Comment
Hey Shairyar! If you want, you *can* just execute the raw SQL in Doctrine: https://knpuniversity.com/screencast/doctrine-queries/raw-sql-queries. But I'm guessing you really want to know how to convert it. The key in ...
weaverryan
weaverryan
Read Full Comment
... ### ###> doctrine/doctrine-bundle ### # Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url # For an SQLite database, use: "sqlite ...
... ": "*", "ext-iconv": "*", "babdev/pagerfanta-bundle": "4.x-dev", // 4.x-dev "doctrine/doctrine-bundle": "^2.10", // 2.12.x-dev "doctrine/doctrine-migrations-bundle": "^3.2", // 3.4.x-dev ...
Hey Kevin, Yes... and we're still releasing Doctrine tutorial: https://knpuniversity.com/screencast/doctrine-relations . But there's work in full swing on this ReactJS tut in our private repo! So we're really working ...
Hey Petru L. You can tell Doctrine which convention to follow in the cofiguration file: ``` // doctrine.yaml doctrine: # ... orm: # ... entity_managers: default ...
MolloKhan
MolloKhan
Read Full Comment