Append the where expression to evaluate when this criteria is searched for using an OR with previous expression.
public function orWhere(Expression $expression) {
if ($this->expression === null) {
return $this
->where($expression);
}
$this->expression = new CompositeExpression(CompositeExpression::TYPE_OR, array(
$this->expression,
$expression,
));
return $this;
}