SqlServerIndexExtensions.IsClustered 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
IsClustered(IReadOnlyIndex, StoreObjectIdentifier) |
Returns a value indicating whether the index is clustered. |
IsClustered(IIndex, StoreObjectIdentifier) |
Returns a value indicating whether the index is clustered. |
IsClustered(IReadOnlyIndex) |
Returns a value indicating whether the index is clustered. |
IsClustered(IIndex) |
Returns a value indicating whether the index is clustered. |
IsClustered(IReadOnlyIndex, StoreObjectIdentifier)
Returns a value indicating whether the index is clustered.
public static bool? IsClustered (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsClustered : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function IsClustered (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 clustered.
Applies to
IsClustered(IIndex, StoreObjectIdentifier)
Returns a value indicating whether the index is clustered.
public static bool? IsClustered (this Microsoft.EntityFrameworkCore.Metadata.IIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsClustered : Microsoft.EntityFrameworkCore.Metadata.IIndex * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function IsClustered (index As IIndex, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Boolean)
Parameters
- index
- IIndex
The index.
- storeObject
- StoreObjectIdentifier
The identifier of the store object.
Returns
true
if the index is clustered.
Applies to
IsClustered(IReadOnlyIndex)
Returns a value indicating whether the index is clustered.
public static bool? IsClustered (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index);
static member IsClustered : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex -> Nullable<bool>
<Extension()>
Public Function IsClustered (index As IReadOnlyIndex) As Nullable(Of Boolean)
Parameters
- index
- IReadOnlyIndex
The index.
Returns
true
if the index is clustered.
Applies to
IsClustered(IIndex)
Returns a value indicating whether the index is clustered.
public static bool? IsClustered (this Microsoft.EntityFrameworkCore.Metadata.IIndex index);
static member IsClustered : Microsoft.EntityFrameworkCore.Metadata.IIndex -> Nullable<bool>
<Extension()>
Public Function IsClustered (index As IIndex) As Nullable(Of Boolean)
Parameters
- index
- IIndex
The index.
Returns
true
if the index is clustered.
Applies to
Entity Framework