Granada\ORM::_add_simple_where PHP Method

_add_simple_where() protected method

Internal method to add a WHERE condition to the query
protected _add_simple_where ( $column_name, string $separator, $value )
$separator string
    protected function _add_simple_where($column_name, $separator, $value)
    {
        return $this->_add_simple_condition('where', $column_name, $separator, $value);
    }
ORM