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