CosmosEntityTypeExtensions.SetThroughput 方法

定義

多載

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

在容器範圍設定布建的輸送量。

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

在容器範圍設定布建的輸送量。

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

在容器範圍設定布建的輸送量。

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

參數

entityType
IMutableEntityType

實體類型。

throughput
Nullable<Int32>

要設定的輸送量。

autoscale
Nullable<Boolean>

是否啟用自動調整。

適用於

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

在容器範圍設定布建的輸送量。

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

參數

entityType
IConventionEntityType

實體類型。

throughput
Nullable<Int32>

要設定的輸送量。

autoscale
Nullable<Boolean>

是否啟用自動調整。

fromDataAnnotation
Boolean

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

傳回

適用於