SqlServerIndexExtensions.GetSortInTempDb 方法

定义

重载

GetSortInTempDb(IReadOnlyIndex)

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

GetSortInTempDb(IReadOnlyIndex, StoreObjectIdentifier)

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

GetSortInTempDb(IReadOnlyIndex)

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

public static bool? GetSortInTempDb (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index);
static member GetSortInTempDb : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex -> Nullable<bool>
<Extension()>
Public Function GetSortInTempDb (index As IReadOnlyIndex) As Nullable(Of Boolean)

参数

index
IReadOnlyIndex

索引。

返回

true 如果索引在 tempdb 中排序,则为 。

适用于

GetSortInTempDb(IReadOnlyIndex, StoreObjectIdentifier)

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

public static bool? GetSortInTempDb (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetSortInTempDb : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function GetSortInTempDb (index As IReadOnlyIndex, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Boolean)

参数

index
IReadOnlyIndex

索引。

storeObject
StoreObjectIdentifier

存储对象的标识符。

返回

true 如果索引在 tempdb 中排序,则为 。

适用于