From 95792cdb17290e00837d0a09f8114aab34f0e7f4 Mon Sep 17 00:00:00 2001 From: meus Date: Sun, 18 Nov 2007 12:37:46 +0000 Subject: [PATCH] fixes #596. Added suggested patch --- lib/Doctrine/Query/Abstract.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/Doctrine/Query/Abstract.php b/lib/Doctrine/Query/Abstract.php index 8a65dbe4b..06ce35de2 100644 --- a/lib/Doctrine/Query/Abstract.php +++ b/lib/Doctrine/Query/Abstract.php @@ -104,6 +104,20 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate return $this->parseQueryPart('where', $where, true); } + /** + * whereNotIn + * adds NOT IN condition to the query WHERE part + * + * @param string $expr the operand of the NOT IN + * @param mixed $params an array of parameters or a simple scalar + * @return Doctrine_Query + */ + + public function whereNotIn($expr, $params = array()) + { + return $this->whereIn($expr, $params, true); + } + /** * addGroupBy * adds fields to the GROUP BY part of the query