PHP Class Phalcon\Db\Adapter\MongoDB\Operation\DeleteMany

See also: MongoDB\Collection::deleteOne()
See also: http://docs.mongodb.org/manual/reference/command/delete/
Inheritance: implements Phalcon\Db\Adapter\MongoDB\Operation\Executable
Show file Open project: phalcon/incubator Class Usage Examples

Public Methods

Method Description
__construct ( string $databaseName, string $collectionName, array | object $filter, array $options = [] ) Constructs a delete command.
execute ( MongoDB\Driver\Server $server ) : DeleteResult Execute the operation.

Method Details

__construct() public method

Supported options: * writeConcern (MongoDB\Driver\WriteConcern): Write concern.
public __construct ( string $databaseName, string $collectionName, array | object $filter, array $options = [] )
$databaseName string Database name
$collectionName string Collection name
$filter array | object Query by which to delete documents
$options array Command options

execute() public method

Execute the operation.
See also: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : DeleteResult
$server MongoDB\Driver\Server
return Phalcon\Db\Adapter\MongoDB\DeleteResult