CosmosModelBuilderExtensions.CanSetThroughput 方法

定义

返回一个值,该值指示是否可以设置给定的吞吐量。

public static bool CanSetThroughput (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder modelBuilder, int? throughput, bool autoscale, bool fromDataAnnotation = false);
static member CanSetThroughput : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder * Nullable<int> * bool * bool -> bool
<Extension()>
Public Function CanSetThroughput (modelBuilder As IConventionModelBuilder, throughput As Nullable(Of Integer), autoscale As Boolean, Optional fromDataAnnotation As Boolean = false) As Boolean

参数

modelBuilder
IConventionModelBuilder

模型生成器。

throughput
Nullable<Int32>

要设置的吞吐量。

autoscale
Boolean

是否启用自动缩放。

fromDataAnnotation
Boolean

指示是否使用数据注释指定配置。

返回

true 如果给定的容器名称可以设置为默认值,则为 。

注解

有关详细信息和示例,请参阅为实体类型和关系建模和使用 EF Core 访问 Azure Cosmos DB

适用于