Example #1
0
 /**
  * Returns conditon for NOT LIKE comparison
  * @param Selectable $leftHandSide The left hand side of the NOT LIKE expression
  * @param Selectable $rightHandSideThe The right hand side of the NOT LIKE expression
  * @return Condition
  */
 function NotLike(Selectable $leftHandSide, Selectable $rightHandSide)
 {
     return parent::CreateConditionNotLike($leftHandSide, $rightHandSide);
 }