SqlServerIndexExtensions.SetSortInTempDb 方法

定义

重载

SetSortInTempDb(IMutableIndex, Nullable<Boolean>)

设置一个值,该值指示索引是否在 tempdb 中排序。

SetSortInTempDb(IConventionIndex, Nullable<Boolean>, Boolean)

设置一个值,该值指示索引是否在 tempdb 中排序。

SetSortInTempDb(IMutableIndex, Nullable<Boolean>)

设置一个值,该值指示索引是否在 tempdb 中排序。

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

参数

index
IMutableIndex

索引。

sortInTempDb
Nullable<Boolean>

要设置的值。

适用于

SetSortInTempDb(IConventionIndex, Nullable<Boolean>, Boolean)

设置一个值,该值指示索引是否在 tempdb 中排序。

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

参数

index
IConventionIndex

索引。

sortInTempDb
Nullable<Boolean>

要设置的值。

fromDataAnnotation
Boolean

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

返回

配置的值。

适用于