Skip to content

Commit ecf40dc

Browse files
authored
Merge pull request #114146 from SnehaGunda/tabbedconceptual
Adding tabs
2 parents 10fd5f0 + 06282b6 commit ecf40dc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/cosmos-db/large-partition-keys.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To create a container with large partition key support see,
3030

3131
To create a container with a large partition key using the .NET SDK, specify the `PartitionKeyDefinitionVersion.V2` property. The following example shows how to specify the Version property within the PartitionKeyDefinition object and set it to PartitionKeyDefinitionVersion.V2.
3232

33-
### v3 .NET SDK
33+
# [.NET SDK V3](#tab/dotnetv3)
3434

3535
```csharp
3636
await database.CreateContainerAsync(
@@ -40,7 +40,7 @@ await database.CreateContainerAsync(
4040
})
4141
```
4242

43-
### v2 .NET SDK
43+
# [.NET SDK V2](#tab/dotnetv2)
4444

4545
```csharp
4646
DocumentCollection collection = await newClient.CreateDocumentCollectionAsync(
@@ -56,6 +56,7 @@ database,
5656
},
5757
new RequestOptions { OfferThroughput = 400 });
5858
```
59+
---
5960

6061
## Supported SDK versions
6162

0 commit comments

Comments
 (0)