2706 search results for Doctrine

... Error - ORMInvalidArgumentException ``` So while trying to fix this I then run into ``` The class 'Doctrine\ORM\PersistentCollection' was not found in the chain configured namespaces ExampleBundle\Entity ...
Shairyar Baig
Shairyar Baig
Read Full Comment
... package information Installing dependencies (including require-dev) from lock file Package operations: 41 installs, 0 updates, 0 removals - Installing doctrine/lexer (v1.0.1): Loading from cache ... [OK] All assets ...
... some new insights in the logs : security.DEBUG: User was reloaded from a user provider. {"provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider","username":"yvon.huynh"} [] [2019-09-16 10:30:03 ...
Benoit L.
Benoit L.
Read Full Comment
Leverage the power of Symfony components within ApiPlatform

... recipe that will install API Platform, but also the doctrine-bundle, CORS support - Cross Origin Resource Management - and everything you need to basically have an API started. So these three steps, and I'm done, I've ...

27:45
Enable Services in Specific Environments with When

... a list that Symfony provides us out of the box of things that it doesn't want to be auto-wired or registered at all. So it doesn't want any of your doctrine entities auto-wired and that makes sense, but it also doesn't ...

19:00:19
Autoconfiguration

... too. And that's it! We've covered the fundamentals of Symfony services, configuration, and environments. We are powerful! No, unstoppable. In the next tutorial, we'll introduce Doctrine - the industry standard way to ...

8:36
Pagination Column Sorting

... composer require babdev/pagerfanta-bundle pagerfanta/doctrine-orm-adapter pagerfanta/twig Cool beans! Let's get the PHP side working first. Open src/Controller/MainController.php. The current page will be stored on the ...

8:04
Test Environment Database Setup

... point to that container. When we refresh the page... it's not using the DATABASE_URL from my .env: it's using the dynamic value that's set by the symfony binary. This is something that we talked about in our Doctrine ...

9:30
Quick Create a DragonTreasure DTO

... system will still use the core Doctrine CollectionProvider, this query extension stuff will continue to work and be called. That's just one less thing we need to worry about. Head over and refresh the documentation. Ok! Only ...

9:51
Pagination on a Custom Resource

... "jobs" of pagination. First, to return the correct subset of the 50 results - which we'll do in a moment. Second, to return the count of the total number of items. When you use Doctrine, it executes 2 separate queries for ...

8:18
Bootstrapping a Killer Test System

... is cool: when we're in the test environment, there's a bit of config called dbname_suffix. Thanks to this, Doctrine will take our normal database name and add _test to it: This next part is specific to a library called ...

8:18
Subresources

... }. It knows how to make that query by looking at the Doctrine relationship and figuring out which column to use. It's super smart. We can actually see this in the profiler. Go to /_profiler, click on our request... and ...

9:54
Adding Lists Value Type

... products. The same is true if you're using Ibexa CMS. So here's our next big goal: to add our Recipe Doctrine entity as a "value type" in layouts so that we can create lists and grids containing recipes. Step one to ...

9:58
Querying for a Single Entity for a Show Page

... id: 16! The important thing to notice is that this returns a VinylMix object. Unless you do something custom, Doctrine always gives us back either a single object or an array of objects, depending on which method you ...

8:55
All About services.yaml

... (). So, these will not be services in the container. In the next tutorial, we'll create Doctrine entity classes, which are model classes for the database. These will live in the src/Entity/ directory... and since they're ...

10:27
Doing Crazy things with Foundry Fixtures

... created in the database. Instead, the new QuestionTag object will be related to whatever Question is currently being created. Foundry does this by reading the Doctrine relationship and smartly overriding the question ...

8:59
Search the Request Object OR Query Logic

... totally forgot that we were already filtering WHERE status = approved. But because we put the OR statement inside of the andWhere(), Doctrine surrounded the entire fuzzy search part with parentheses. If we had used orWhere ...

8:05
Publish State Change Validator Logic

... is it changing from false to true? Or true to false? Or maybe it's not changing at all because the PUT request is only updating other fields. And hey! We already know how to get the original data from Doctrine! We did it ...

8:26
Validating Who/When Can Publish

... published, even though the description is short. Next, let's prevent this. How? It's back to our "original data" trick from Doctrine.

8:22
Request Object POST Data

... could do this with an AJAX call instead of a form submit. From a Doctrine and Symfony perspective, it really makes no difference. So I'll keep it simple and leave JavaScript out of this. Let's start by creating that endpoint ...

8:08