Flags used with the Update method in MongoCollection.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax [FlagsAttribute]
public enum UpdateFlags
<FlagsAttribute>
Public Enumeration UpdateFlags
[<FlagsAttribute>]
type UpdateFlags
Members
| Member name | Value | Description |
---|
| None | 0 |
No flags.
|
| Upsert | 1 |
If document doesn't exist then do an Insert.
|
| Multi | 2 |
Update all matching documents (instead of just one).
|
See Also