LMongo\Query\Builder::norWhereExists PHP 메소드

norWhereExists() 공개 메소드

Add an "$exists element operation" clause to logical $nor operation.
public norWhereExists ( string $column, boolean $exists = true ) : LMongo\Query\Builder
$column string
$exists boolean
리턴 LMongo\Query\Builder
    public function norWhereExists($column, $exists = true)
    {
        return $this->where($column, array('$exists' => $exists), '$nor');
    }
Builder