EasyAdmin 3: limit data to the logged-in user still shows other data in form dropdowns
问题 I'm using Symfony 5. I want every logged in user to have it's own space in EasyAdmin 3, so no user will see records of other users. I store the user with every table in the database. For simple list views, I managed to get this to work using a extension of the AbstractCrudController : <?php namespace App\Controller\Admin; use Doctrine\ORM\QueryBuilder; use EasyCorp\Bundle\EasyAdminBundle\Collection\FieldCollection; use EasyCorp\Bundle\EasyAdminBundle\Collection\FilterCollection; use EasyCorp