Skip to content

Instantly share code, notes, and snippets.

@IvanAlekseevichPopov
Created May 15, 2017 13:38
Show Gist options
  • Select an option

  • Save IvanAlekseevichPopov/489f8d954c79d0617e4a325eae20c358 to your computer and use it in GitHub Desktop.

Select an option

Save IvanAlekseevichPopov/489f8d954c79d0617e4a325eae20c358 to your computer and use it in GitHub Desktop.
QueryBuilder delete example
<?php
$qb
->delete(ProductImage::class, 'i')
->where($qb->expr()->in('i.oldId', ':ids'))
->setParameter('ids', $outDatedIds)
->getQuery()
->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment