SqlServerIndexExtensions.SetIsClustered 方法

定義

多載

SetIsClustered(IMutableIndex, Nullable<Boolean>)

設定值,指出索引是否為叢集。

SetIsClustered(IConventionIndex, Nullable<Boolean>, Boolean)

設定值,指出索引是否為叢集。

SetIsClustered(IMutableIndex, Nullable<Boolean>)

設定值,指出索引是否為叢集。

public static void SetIsClustered (this Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index, bool? value);
static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex * Nullable<bool> -> unit
<Extension()>
Public Sub SetIsClustered (index As IMutableIndex, value As Nullable(Of Boolean))

參數

index
IMutableIndex

索引。

value
Nullable<Boolean>

要設定的值。

適用於

SetIsClustered(IConventionIndex, Nullable<Boolean>, Boolean)

設定值,指出索引是否為叢集。

public static void SetIsClustered (this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool? value, bool fromDataAnnotation = false);
public static bool? SetIsClustered (this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool? value, bool fromDataAnnotation = false);
static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<bool> * bool -> unit
static member SetIsClustered : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<bool> * bool -> Nullable<bool>
<Extension()>
Public Sub SetIsClustered (index As IConventionIndex, value As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false)
<Extension()>
Public Function SetIsClustered (index As IConventionIndex, value As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

參數

index
IConventionIndex

索引。

value
Nullable<Boolean>

要設定的值。

fromDataAnnotation
Boolean

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

傳回

已設定的值。

適用於