object UpdateManyModel
A model describing an update to all documents that matches the query filter. The update to apply must include only update operators.
- Alphabetic
- By Inheritance
- UpdateManyModel
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply(filter: Bson, update: Seq[Bson], updateOptions: UpdateOptions): UpdateManyModel[Nothing]
Construct a new instance.
Construct a new instance.
- filter
a document describing the query filter.
- update
a pipeline describing the update, which may not be null.
- updateOptions
the options to apply
- returns
the new UpdateManyModel
- Since
4.7
- Note
Requires MongoDB 4.2 or greater
- def apply(filter: Bson, update: Seq[Bson]): UpdateManyModel[Nothing]
Construct a new instance.
Construct a new instance.
- filter
a document describing the query filter.
- update
a pipeline describing the update, which may not be null.
- returns
the new UpdateManyModel
- Since
4.7
- Note
Requires MongoDB 4.2 or greater
- def apply(filter: Bson, update: Bson, updateOptions: UpdateOptions): UpdateManyModel[Nothing]
Construct a new instance.
Construct a new instance.
- filter
a document describing the query filter.
- update
a document describing the update. The update to apply must include only update operators.
- updateOptions
the options to apply
- returns
the new UpdateManyModel
- def apply(filter: Bson, update: Bson): UpdateManyModel[Nothing]
Construct a new instance.
Construct a new instance.
- filter
a document describing the query filter.
- update
a document describing the update. The update to apply must include only update operators.
- returns
the new UpdateManyModel
This is the documentation for the MongoDB Scala driver.
Driver structure
The mongodb scala driver.
To get started you need a MongoClient instance, either from a connection string or via a org.mongodb.scala.MongoClientSettings.
Notable packages include: