Class UpdateManyModel<TDocument>
Model for updating many documents.
[Serializable]
public sealed class UpdateManyModel<TDocument> : WriteModel<TDocument>
Type Parameters
TDocument
The type of the document.
- Inheritance
-
WriteModel<TDocument>UpdateManyModel<TDocument>
- Inherited Members
Constructors
UpdateManyModel(FilterDefinition<TDocument>, UpdateDefinition<TDocument>)
Initializes a new instance of the UpdateManyModel<TDocument> class.
public UpdateManyModel(FilterDefinition<TDocument> filter, UpdateDefinition<TDocument> update)
Parameters
filter
FilterDefinition<TDocument>The filter.
update
UpdateDefinition<TDocument>The update.
Properties
ArrayFilters
Gets or sets the array filters.
public IEnumerable<ArrayFilterDefinition> ArrayFilters { get; set; }
Property Value
- IEnumerable<ArrayFilterDefinition>
The array filters.
Collation
Gets or sets the collation.
public Collation Collation { get; set; }
Property Value
Filter
Gets the filter.
public FilterDefinition<TDocument> Filter { get; }
Property Value
- FilterDefinition<TDocument>
Hint
Gets or sets the hint.
public BsonValue Hint { get; set; }
Property Value
IsUpsert
Gets or sets a value indicating whether to insert the document if it doesn't already exist.
public bool IsUpsert { get; set; }
Property Value
ModelType
Gets the type of the model.
public override WriteModelType ModelType { get; }
Property Value
Update
Gets the update.
public UpdateDefinition<TDocument> Update { get; }
Property Value
- UpdateDefinition<TDocument>
Methods
ThrowIfNotValid()
Validate model.
public override void ThrowIfNotValid()