Share via


CosmosModelExtensions.SetThroughput 方法

定义

重载

SetThroughput(IMutableModel, Nullable<Int32>, Nullable<Boolean>)

在数据库范围内设置预配的吞吐量。

SetThroughput(IConventionModel, Nullable<Int32>, Nullable<Boolean>, Boolean)

在数据库范围内设置预配的吞吐量。

SetThroughput(IMutableModel, Nullable<Int32>, Nullable<Boolean>)

在数据库范围内设置预配的吞吐量。

public static void SetThroughput (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, int? throughput, bool? autoscale);
static member SetThroughput : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Nullable<int> * Nullable<bool> -> unit
<Extension()>
Public Sub SetThroughput (model As IMutableModel, throughput As Nullable(Of Integer), autoscale As Nullable(Of Boolean))

参数

model
IMutableModel

模型。

throughput
Nullable<Int32>

要设置的吞吐量。

autoscale
Nullable<Boolean>

是否启用自动缩放。

适用于

SetThroughput(IConventionModel, Nullable<Int32>, Nullable<Boolean>, Boolean)

在数据库范围内设置预配的吞吐量。

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

参数

model
IConventionModel

模型。

throughput
Nullable<Int32>

要设置的吞吐量。

autoscale
Nullable<Boolean>

是否启用自动缩放。

fromDataAnnotation
Boolean

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

返回

适用于