Class TransactionalBatchPatchItemRequestOptions
Cosmos Batch Patch request options
public class TransactionalBatchPatchItemRequestOptions : TransactionalBatchItemRequestOptions
- Inheritance
-
TransactionalBatchPatchItemRequestOptions
- Inherited Members
- Extension Methods
Constructors
TransactionalBatchPatchItemRequestOptions()
public TransactionalBatchPatchItemRequestOptions()
Properties
FilterPredicate
Gets or sets condition to be checked before the patch operations in the Azure Cosmos DB service.
public string FilterPredicate { get; set; }
Property Value
- string
The condition to be checked before execution of operations.
Remarks
Condition can only be a sql statement. Creates a conditional SQL argument which is of format from-clause, the condition has to be within the scope of the document which is supposed to be patched in the particular request. If the condition is satisfied (given document meets the given from-clause SQL statement), the patch transaction will take place otherwise it will be returned with precondition failed.