Class PatchOperationItem<T>
- Namespace
- FoundationaLLM.Common.Models.Azure.CosmosDB
- Assembly
- FoundationaLLM.Common.dll
Contains the contents of an Azure Cosmos DB patch operation item.
public class PatchOperationItem<T> : IPatchOperationItem
Type Parameters
T
The type of the item being updated by the patch operation.
- Inheritance
-
PatchOperationItem<T>
- Implements
- Inherited Members
- Extension Methods
Properties
ItemId
The identifier of the item being updated.
public required string ItemId { get; set; }
Property Value
ItemType
Specifies the item type to aid with casting within the batch operation.
public Type ItemType { get; }
Property Value
PropertyValues
The dictionary containing property names and updated values.
public required Dictionary<string, object?> PropertyValues { get; set; }