SqlServerIndexExtensions.SetFillFactor Método

Definición

Sobrecargas

SetFillFactor(IMutableIndex, Nullable<Int32>)

Establece un valor que indica si el índice usa el factor de relleno.

SetFillFactor(IConventionIndex, Nullable<Int32>, Boolean)

Define un valor que indica si el índice usa el factor de relleno.

SetFillFactor(IMutableIndex, Nullable<Int32>)

Establece un valor que indica si el índice usa el factor de relleno.

public static void SetFillFactor (this Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index, int? fillFactor);
static member SetFillFactor : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex * Nullable<int> -> unit
<Extension()>
Public Sub SetFillFactor (index As IMutableIndex, fillFactor As Nullable(Of Integer))

Parámetros

index
IMutableIndex

Índice.

fillFactor
Nullable<Int32>

Valor que se va a establecer.

Se aplica a

SetFillFactor(IConventionIndex, Nullable<Int32>, Boolean)

Define un valor que indica si el índice usa el factor de relleno.

public static int? SetFillFactor (this Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, int? fillFactor, bool fromDataAnnotation = false);
static member SetFillFactor : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * Nullable<int> * bool -> Nullable<int>
<Extension()>
Public Function SetFillFactor (index As IConventionIndex, fillFactor As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Integer)

Parámetros

index
IConventionIndex

Índice.

fillFactor
Nullable<Int32>

Valor que se va a establecer.

fromDataAnnotation
Boolean

Indica si la configuración se especificó mediante una anotación de datos.

Devoluciones

El valor configurado.

Se aplica a