2706 search results for Doctrine

... point, contain the correct // array of Tag objects that was selected // you can just save the Post to Doctrine now $em = $this->getDoctrine()->getManager(); $em->persist($post ...
weaverryan
weaverryan
Read Full Comment
... `/products`, for example. B) Internally (assuming your `ApiResource` is an entity), this will trigger the "doctrine extensions" system in API Platform... which includes the filters. In short, your custom filter will be ...
weaverryan
weaverryan
Read Full Comment
... tell Doctrine manually that the migration that failed "did run" (since you have basically completed that migration manually) so that it won't try to run it again on the next deploy. You can do that with the ...
weaverryan
weaverryan
Read Full Comment
... ` property is type-hinted as being an instance of `UuidInterface`. C) The Doctrine column has the `uuid` type (though I feel like that shouldn't matter—not all API fields need to be mapped to the database). D) The `$uuid ...
Nathanael
Nathanael
Read Full Comment
... ridiculously simple. getting "Versioned" fields doesnt seem to work on the fly as it should, what i mean is this: Entity: ``` namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping ...
jlchafardet
jlchafardet
Read Full Comment
... pagerfanta/twig for twig support. Actually you don't need pagerfanta/pagerfanta at all you can install what you need such as pagerfanta/core, pagerfanta/twig and pagerfanta/doctrine-orm-adapter. I have watched ahead and I ...
... /")" at /mnt/c/Sites/symfonycasts/code-symfony-doctrine/start/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136 [Application] Feb 7 21:02:57 |ERROR | CONSOL Error thrown while running command "make ...
Néstor D.
Néstor D.
Read Full Comment
... use the result data. Even Symfony Web Debug Toolbar (WDT) may be helpful here, you can check the timeline and queries that was executed during the page rendering and see some bottlenecks :) 4. That mode tells Doctrine ...
Hey jlchafardet! Nice to hear from you :). I'll answer each comment independently. In this situation, when it comes to building this EntityType, the form system/Doctrine doesn't care at all that you're building a form ...
weaverryan
weaverryan
Read Full Comment
... >getRepository(UserObject::class)->findOneBy(['username' => 'XXXX']);`) may not be enough because Doctrine is smart and tries to re-use things in memory whenever possible to avoid a fresh query. Anyways, if this is NOT it, then ...
weaverryan
weaverryan
Read Full Comment
... entity, and the way I seek to solve this problem was to create it a temporary user (who has not been registered yet), that user needs a password but when I persisted it in a normal cascade (letting doctrine do its normal ...
... get the "original data" of my entity (User in your case) from Doctrine and compare it with the new data. For example: ``` // in the validator, assume there is an entityManager property // will be an array of the data ...
weaverryan
weaverryan
Read Full Comment
... after deploy. This is, in reality, a lot of stuff: all of the YAML files (services, bundle config, routing, etc), Doctrine annotations, validation metadata, Twig templates: these are all "code" that you can read once ...
weaverryan
weaverryan
Read Full Comment
... - https://symfonycasts.com/screencast/symfony-doctrine/service-subscriber - and will also talk about AbstractController *specifically* in a few days on our Deep Dive tutorial - https://symfonycasts.com/screencast/deep-dive ...
weaverryan
weaverryan
Read Full Comment
... language" header, you have a little bit more work to do. You would need to parse the "accept language" header to determine which language to ultimately use. I would then *probably* create an "API Platform Doctrine ...
weaverryan
weaverryan
Read Full Comment
... "owning" side of the relationship, we ultimately need that side of the relation to be set. If the new data were *only* set onto `User.professions`, Doctrine will not save the updated data in the database. This is almost ...
weaverryan
weaverryan
Read Full Comment
... on the *owning* side of the relationship (Post in this case). It's ignored on the other side. This mapping stuff can be tricky with Doctrine :). I hope this guides you :)
weaverryan
weaverryan
Read Full Comment
... I don't really think that *anyone* needs a custom user provider if they're using Doctrine. If you need to do some crazy query for your User in your "authenticator", just call a custom method on your repository. You're ...
weaverryan
weaverryan
Read Full Comment
Hey Alex, Here's an example I made for you: ``` namespace App\Form; use App\Entity\Article; use App\Entity\User; use App\Repository\ArticleRepository; use App\Repository\UserRepository; use Symfony\Bridge\Doctrine ...
... = $this->getEntityManager()->getConnection(); $conn->query('SELECT * FROM articles'); ``` For more syntax information take a look at docs: https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference ...