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)
- Source:
- SqlServerIndexExtensions.cs
- Source:
- SqlServerIndexExtensions.cs
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)
- Source:
- SqlServerIndexExtensions.cs
- Source:
- SqlServerIndexExtensions.cs
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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Entity Framework