SqlServerIndexExtensions.IsCreatedOnline Method

Definition

Overloads

IsCreatedOnline(IIndex)

Returns a value indicating whether the index is online.

IsCreatedOnline(IReadOnlyIndex)

Returns a value indicating whether the index is online.

IsCreatedOnline(IReadOnlyIndex, StoreObjectIdentifier)

Returns a value indicating whether the index is online.

IsCreatedOnline(IIndex)

Returns a value indicating whether the index is online.

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

Parameters

index
IIndex

The index.

Returns

true if the index is online.

Applies to

IsCreatedOnline(IReadOnlyIndex)

Returns a value indicating whether the index is online.

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

Parameters

index
IReadOnlyIndex

The index.

Returns

true if the index is online.

Applies to

IsCreatedOnline(IReadOnlyIndex, StoreObjectIdentifier)

Returns a value indicating whether the index is online.

public static bool? IsCreatedOnline (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsCreatedOnline : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function IsCreatedOnline (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 online.

Applies to