SqlServerIndexExtensions.GetFillFactor Method

Definition

Overloads

GetFillFactor(IIndex)

Returns a value indicating whether the index uses the fill factor.

GetFillFactor(IReadOnlyIndex)

Returns the fill factor that the index uses.

GetFillFactor(IReadOnlyIndex, StoreObjectIdentifier)

Returns the fill factor that the index uses.

GetFillFactor(IIndex)

Returns a value indicating whether the index uses the fill factor.

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

Parameters

index
IIndex

The index.

Returns

true if the index is online.

Applies to

GetFillFactor(IReadOnlyIndex)

Returns the fill factor that the index uses.

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

Parameters

index
IReadOnlyIndex

The index.

Returns

The fill factor that the index uses

Applies to

GetFillFactor(IReadOnlyIndex, StoreObjectIdentifier)

Returns the fill factor that the index uses.

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

Parameters

index
IReadOnlyIndex

The index.

storeObject
StoreObjectIdentifier

The identifier of the store object.

Returns

The fill factor that the index uses

Applies to