phprs\ezsql\rules\basic\WhereRule::whereArgs PHP Method

whereArgs() public method

=> "WHERE a=1 AND b IN(1,2) AND c BETWEEN 1 AND 2 AND d<>1"
public whereArgs ( string $args ) : OrderByRule
$args string
return OrderByRule
    public function whereArgs($args)
    {
        WhereImpl::whereArgs($this->context, $args);
        return new OrderByRule($this->context);
    }