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