Как я могу отфильтровать связанные объекты с помощью построителя запросов, используя отрицательные условия? - PullRequest
0 голосов
/ 12 февраля 2019

Моя сущность:

  /**
  * @ORM\ManyToMany(targetEntity="Productgroup", inversedBy="fields")
  * @ORM\JoinColumn(name="productgroup", referencedColumnName="id")
  */
  private $productgroup;

  public function getProductgroup()
  {
    return $this->productgroup;
  }

  public function setProductgroup($productgroup): self
  {
    $this->productgroup = $productgroup;

    return $this;
  }

  public function __construct()
  {
    $this->productgroup = new ArrayCollection();
  }

Это вывод:

array:2 [▼
  0 => Fields {#7534 ▼
    -id: 3
    -name: "cat"
    -unique_id: "5a38c820ed"
    -productgroup: PersistentCollection {#7538 ▼
      -snapshot: array:1 [ …1]
      -owner: Fields {#7534}
      -association: array:20 [ …20]
      -em: EntityManager {#2889 …11}
      -backRefFieldName: "fields"
      -typeClass: ClassMetadata {#6568 …}
      -isDirty: false
      #collection: ArrayCollection {#7539 ▼
        -elements: array:1 [▼
          0 => Productgroup {#7220 ▼
            -id: 6
            -name: "Animals"
            -unique_id: "9e4ef1c46f"
            -fields: PersistentCollection {#7431 ▶}
          }
        ]
      }
      #initialized: true
    }
    -type: Type {#7615 ▶}
  }
  1 => Fields {#7616 ▼
    -id: 5
    -name: "horse"
    -unique_id: "c3890b9287"
    -productgroup: PersistentCollection {#7617 ▼
      -snapshot: []
      -owner: Fields {#7616}
      -association: array:20 [ …20]
      -em: EntityManager {#2889 …11}
      -backRefFieldName: "fields"
      -typeClass: ClassMetadata {#6568 …}
      -isDirty: false
      #collection: ArrayCollection {#7618 ▼
        -elements: []
      }
      #initialized: false
    }
    -type: Type {#7619 ▶}
  }
]

Я пытаюсь удалить все массивы, которые не связаны с производственной группой.id 6.

До сих пор я мог выяснить, как можно удалить все массивы, которые НЕ имеют отношения с идентификатором группы продуктов 6:

Контроллер:

$group = $this->getDoctrine()->getRepository($EntityName)->filterByColletion(6);

ИРепозиторий:

  public function filterByColletion($id)
    {
      return $this->createQueryBuilder('f')
      ->leftJoin('f.productgroup', 'pg')
      ->where('pg.id = :id')
      ->setParameter(':id', 6)
      ->getQuery()
      ->execute();
    }

Результат:

array:1 [▼
  0 => Fields {#7534 ▼
    -id: 3
    -name: "cat"
    -unique_id: "5a38c820ed"
    -productgroup: PersistentCollection {#7538 ▼
      -snapshot: array:1 [ …1]
      -owner: Fields {#7534}
      -association: array:20 [ …20]
      -em: EntityManager {#2889 …11}
      -backRefFieldName: "fields"
      -typeClass: ClassMetadata {#6568 …}
      -isDirty: false
      #collection: ArrayCollection {#7539 ▼
        -elements: array:1 [▼
          0 => Productgroup {#7220 ▼
            -id: 6
            -name: "Animals"
            -unique_id: "9e4ef1c46f"
            -fields: PersistentCollection {#7431 ▶}
          }
        ]
      }
      #initialized: true
    }
    -type: Type {#7615 ▼
      +__isInitialized__: true
      -id: 3
      -name: "password"
      -unique_id: "2ef6e55a1d"
      -label: "password"
       …2
    }
  }
]

Но мне это нужно как раз наоборот.Поэтому я попытался:

   public function filterByColletion($id)
    {
      return $this->createQueryBuilder('f')
      ->leftJoin('f.productgroup', 'pg')
      ->where('pg.id != :id')
      ->setParameter(':id', 6)
      ->getQuery()
      ->execute();
    }

Но это дает мне пустой массив в качестве вывода, а не как ожидалось поле с именем horse.

Я также попробовал другой подход, но этоне сработал эфир:

public function filterByColletion($id)
{
  $em = $this->getEntityManager();
  $qb  = $this->_em->createQueryBuilder();

  return $this->createQueryBuilder('f')
  ->leftJoin('f.productgroup', 'pg')
  ->where($qb->expr()->notIn('pg.id',6))
  ->getQuery()
  ->execute();
}

1 Ответ

0 голосов
/ 12 февраля 2019

Я полагаю, что вы используете expr неправильно, попробуйте использовать этот способ:

$qb->expr()->notIn('f.productgroup', [6])

Вы можете прочитать больше здесь Как использовать WHERE IN с Doctrine 2

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...