SqlServerIndexExtensions.SetFillFactor Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetFillFactor(IMutableIndex, Nullable<Int32>) |
Sets a value indicating whether the index uses the fill factor. |
SetFillFactor(IConventionIndex, Nullable<Int32>, Boolean) |
Defines a value indicating whether the index uses the fill factor. |
SetFillFactor(IMutableIndex, Nullable<Int32>)
Sets a value indicating whether the index uses the fill factor.
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))
Parameters
- index
- IMutableIndex
The index.
Applies to
SetFillFactor(IConventionIndex, Nullable<Int32>, Boolean)
Defines a value indicating whether the index uses the fill factor.
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)
Parameters
- index
- IConventionIndex
The index.
- fromDataAnnotation
- Boolean
Indicates whether the configuration was specified using a data annotation.
Returns
The configured value.
Applies to
Entity Framework