Share via


SqlServerKeyExtensions.GetFillFactor Method

Definition

Overloads

GetFillFactor(IReadOnlyKey)

Returns the fill factor that the key uses.

GetFillFactor(IReadOnlyKey, StoreObjectIdentifier)

Returns the fill factor that the key uses.

GetFillFactor(IReadOnlyKey)

Source:
SqlServerKeyExtensions.cs

Returns the fill factor that the key uses.

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

Parameters

key
IReadOnlyKey

The key.

Returns

The fill factor that the key uses

Applies to

GetFillFactor(IReadOnlyKey, StoreObjectIdentifier)

Source:
SqlServerKeyExtensions.cs

Returns the fill factor that the key uses.

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

Parameters

key
IReadOnlyKey

The key.

storeObject
StoreObjectIdentifier

The identifier of the store object.

Returns

The fill factor that the key uses

Applies to