Deleting record in many-to-many table Deleting record in many-to-many table symfony symfony

Deleting record in many-to-many table


Doctrine thinks about the data as objects, rather than as table rows. So, in Doctrine terms, there are Group objects (which hold the Group's users, among other things) and there are User objects (each one of which has a property storing the Groups that the user is in). But there are no UserGroup objects. The idea of Doctrine (and any ORM system) is to let the developer forget about these intermediate tables that the database might need but that aren't necessary in terms of the program's object model.

So what you want to do is load up the relevant User object, remove the group from it's $groups property, and persist the modified User object. (Or vice-versa, i.e. load up the relevant Group object and remove the User from it.) DQL might be able to handle this, but I think it's easier to do it without DQL as DQL's DELETE statement is for deleting whole objects, not modifying their properties.

Try:

$user = $em->find('User', $userId);$user->removeGroup($groupId); //make sure the removeGroup method is defined in your User model. $em->persist($user);$em->flush(); //only call this after you've made all your data modifications

Note: if you don't have a removeGroup() method in your User model (I think Symfony can generate one for you, but I could be wrong), the method could look as follows.

//In User.php, and assuming the User's groups are stored in $this->groups, //and $groups is initialized to an empty ArrayCollection in the User class's constructor//(which Symfony should do by default).class User{    //all your other methods    public function removeGroup($group)    {        //optionally add a check here to see that $group exists before removing it.        return $this->groups->removeElement($group);    }}


In addition to @Ethan's answer, one-way remove is not working. For such manyToMany relationship, you have to call the remove methods from both entities, for example,

$user = $em->findOneById($userId);$group = $em->findOneById($groupId);$user->removeGroup($group);$group->removeUser($user);$em->persist($user);$em->flush();