Example #1
0
 /**
  * Returns sql condition for NOT IN
  * @param Selectable $selectable The field to check
  * @param InList $inList The list of selectables in the NOT IN list
  * @return Condition The sql condition object
  */
 function NotIn(Selectable $selectable, InList $inList)
 {
     return parent::CreateConditionNotIn($selectable, $inList);
 }