gpt4 book ai didi

C#:如何以编程方式扩展现有 DocumentDB 集合的定价层?

转载 作者:行者123 更新时间:2023-11-30 20:21:51 26 4
gpt4 key购买 nike

我希望能够从 C# 中修改现有 DocumentDB 集合的 OfferType(例如定价层 S2S3 等),但我没有看到 Microsoft.Azure.Documents.DocumentCollection 类中任何有助于实现此目的的成员。

是否有另一种方法可以提供此功能?

最佳答案

请参阅此代码片段,了解如何使用 .NET SDK 更改 DocumentDB 集合的性能级别

https://azure.microsoft.com/en-gb/documentation/articles/documentdb-performance-levels/#changing-performance-levels-using-the-net-sdk

// Query the "offers" feed to retrieve the offer for the collection
Offer offer = client.CreateOfferQuery()
.Where(r => r.ResourceLink == "collection selfLink")
.AsEnumerable()
.SingleOrDefault();

//Change the offer type to S1, S2 or S3
offer.OfferType = "S3";

//Now update the "offer" resource
Offer updated = await client.ReplaceOfferAsync(offer);

关于C#:如何以编程方式扩展现有 DocumentDB 集合的定价层?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32893273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com