SqlServerIndexExtensions.GetFillFactor 方法

定义

重载

GetFillFactor(IIndex)

返回一个值,该值指示索引是否使用填充因子。

GetFillFactor(IReadOnlyIndex)

返回索引使用的填充因子。

GetFillFactor(IReadOnlyIndex, StoreObjectIdentifier)

返回索引使用的填充因子。

GetFillFactor(IIndex)

返回一个值,该值指示索引是否使用填充因子。

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)

参数

index
IIndex

索引。

返回

true 如果索引处于联机状态,则为 。

适用于

GetFillFactor(IReadOnlyIndex)

返回索引使用的填充因子。

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)

参数

index
IReadOnlyIndex

索引。

返回

索引使用的填充因子

适用于

GetFillFactor(IReadOnlyIndex, StoreObjectIdentifier)

返回索引使用的填充因子。

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)

参数

index
IReadOnlyIndex

索引。

storeObject
StoreObjectIdentifier

存储对象的标识符。

返回

索引使用的填充因子

适用于