PHP Класс Phalcon\Db\Adapter\MongoDB\Operation\Delete

This class is used internally by the DeleteMany and DeleteOne operation classes.
См. также: http://docs.mongodb.org/manual/reference/command/delete/
Наследование: implements Phalcon\Db\Adapter\MongoDB\Operation\Executable
Показать файл Открыть проект

Открытые методы

Метод Описание
__construct ( string $databaseName, string $collectionName, array | object $filter, integer $limit, array $options = [] ) Constructs a delete command.
execute ( MongoDB\Driver\Server $server ) : DeleteResult Execute the operation.

Описание методов

__construct() публичный метод

Supported options: * writeConcern (MongoDB\Driver\WriteConcern): Write concern.
public __construct ( string $databaseName, string $collectionName, array | object $filter, integer $limit, array $options = [] )
$databaseName string Database name
$collectionName string Collection name
$filter array | object Query by which to delete documents
$limit integer The number of matching documents to delete. Must be 0 or 1, for all or a single document, respectively.
$options array Command options

execute() публичный метод

Execute the operation.
См. также: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : DeleteResult
$server MongoDB\Driver\Server
Результат Phalcon\Db\Adapter\MongoDB\DeleteResult