2 writes to ContainerProperties
Aspire.Hosting.Azure.CosmosDB (2)
AzureCosmosDBContainerResource.cs (2)
41ContainerProperties = new ContainerProperties(containerName, partitionKeyPathsArray); 57ContainerProperties = new ContainerProperties(containerName, partitionKeyPath);
8 references to ContainerProperties
Aspire.Hosting.Azure.CosmosDB (8)
AzureCosmosDBContainerResource.cs (6)
71get => ContainerProperties.Id; 72set => ContainerProperties.Id = ThrowIfNullOrEmpty(value); 80get => ContainerProperties.PartitionKeyPath; 81set => ContainerProperties.PartitionKeyPath = ThrowIfNullOrEmpty(value); 89get => ContainerProperties.PartitionKeyPaths; 101ContainerProperties.PartitionKeyPaths = value;
AzureCosmosDBExtensions.cs (2)
122var containerProperties = container.ContainerProperties; 518if (container.ContainerProperties.PartitionKeyDefinitionVersion is { } version)