LMongo\Query\Builder::andWhereNe PHP Méthode

andWhereNe() public méthode

Add an "$ne comparison operation" clause to logical $and operation.
public andWhereNe ( string $column, string $value ) : LMongo\Query\Builder
$column string
$value string
Résultat LMongo\Query\Builder
    public function andWhereNe($column, $value)
    {
        return $this->where($column, array('$ne' => $value), '$and');
    }
Builder