2 writes to ContainerProperties
Aspire.Hosting.Azure.CosmosDB (2)
AzureCosmosDBContainerResource.cs (2)
39ContainerProperties = new ContainerProperties(containerName, partitionKeyPathsArray); 55ContainerProperties = new ContainerProperties(containerName, partitionKeyPath);
8 references to ContainerProperties
Aspire.Hosting.Azure.CosmosDB (8)
AzureCosmosDBContainerResource.cs (6)
69get => ContainerProperties.Id; 70set => ContainerProperties.Id = ThrowIfNullOrEmpty(value); 78get => ContainerProperties.PartitionKeyPath; 79set => ContainerProperties.PartitionKeyPath = ThrowIfNullOrEmpty(value); 87get => ContainerProperties.PartitionKeyPaths; 99ContainerProperties.PartitionKeyPaths = value;
AzureCosmosDBExtensions.cs (2)
119var containerProperties = container.ContainerProperties; 501if (container.ContainerProperties.PartitionKeyDefinitionVersion is { } version)