共用方式為


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

指出是否使用資料批註來指定組態。

傳回

適用於