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