How I can delete link in the many to many relationship? This is my relation:
$this->hasManyToMany(
"id", "LabelsHasPersons", "persons_id", "labels_id", "Labels", "id", array('alias' => 'Labels')
);
Persons has some labels with ID e.g 1,2,3 I would like delete link between person and label: 2