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

andWhereSize() 공개 메소드

Add an "$size array operation" clause to logical $and operation.
public andWhereSize ( string $column, integer $value ) : LMongo\Query\Builder
$column string
$value integer
리턴 LMongo\Query\Builder
    public function andWhereSize($column, $value)
    {
        return $this->where($column, array('$size' => $value), '$and');
    }
Builder