| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* Copyright 2010-present MongoDB Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- using MongoDB.Driver.Core.Misc;
- using System;
- using System.Collections.Generic;
- namespace MongoDB.Driver
- {
- /// <summary>
- /// Model for updating many documents.
- /// </summary>
- /// <typeparam name="TDocument">The type of the document.</typeparam>
- #if NET452
- [Serializable]
- #endif
- public sealed class UpdateManyModel<TDocument> : WriteModel<TDocument>
- {
- // fields
- private IEnumerable<ArrayFilterDefinition> _arrayFilters;
- private Collation _collation;
- private readonly FilterDefinition<TDocument> _filter;
- private bool _isUpsert;
- private readonly UpdateDefinition<TDocument> _update;
- // constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="UpdateManyModel{TDocument}"/> class.
- /// </summary>
- /// <param name="filter">The filter.</param>
- /// <param name="update">The update.</param>
- public UpdateManyModel(FilterDefinition<TDocument> filter, UpdateDefinition<TDocument> update)
- {
- _filter = Ensure.IsNotNull(filter, nameof(filter));
- _update = Ensure.IsNotNull(update, nameof(update));
- }
- // properties
- /// <summary>
- /// Gets or sets the array filters.
- /// </summary>
- /// <value>
- /// The array filters.
- /// </value>
- public IEnumerable<ArrayFilterDefinition> ArrayFilters
- {
- get { return _arrayFilters; }
- set { _arrayFilters = value; }
- }
- /// <summary>
- /// Gets or sets the collation.
- /// </summary>
- public Collation Collation
- {
- get { return _collation; }
- set { _collation = value; }
- }
- /// <summary>
- /// Gets the filter.
- /// </summary>
- public FilterDefinition<TDocument> Filter
- {
- get { return _filter; }
- }
- /// <summary>
- /// Gets or sets a value indicating whether to insert the document if it doesn't already exist.
- /// </summary>
- public bool IsUpsert
- {
- get { return _isUpsert; }
- set { _isUpsert = value; }
- }
- /// <summary>
- /// Gets the update.
- /// </summary>
- public UpdateDefinition<TDocument> Update
- {
- get { return _update; }
- }
- /// <inheritdoc/>
- public override WriteModelType ModelType
- {
- get { return WriteModelType.UpdateMany; }
- }
- }
- }
|