SqlServerIndexExtensions.GetSortInTempDb Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetSortInTempDb(IReadOnlyIndex) |
Returns a value indicating whether the index is sorted in tempdb. |
GetSortInTempDb(IReadOnlyIndex, StoreObjectIdentifier) |
Returns a value indicating whether the index is sorted in tempdb. |
GetSortInTempDb(IReadOnlyIndex)
Returns a value indicating whether the index is sorted in 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)
Parameters
- index
- IReadOnlyIndex
The index.
Returns
true
if the index is sorted in tempdb.
Applies to
GetSortInTempDb(IReadOnlyIndex, StoreObjectIdentifier)
Returns a value indicating whether the index is sorted in 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)
Parameters
- index
- IReadOnlyIndex
The index.
- storeObject
- StoreObjectIdentifier
The identifier of the store object.
Returns
true
if the index is sorted in tempdb.
Applies to
Entity Framework