Created
May 15, 2017 13:38
-
-
Save IvanAlekseevichPopov/489f8d954c79d0617e4a325eae20c358 to your computer and use it in GitHub Desktop.
QueryBuilder delete example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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