IConventionSequenceBuilder.IncrementsBy Method

Definition

Sets the sequence to increment by the given amount when generating each next value.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder IncrementsBy (int? increment, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder? IncrementsBy (int? increment, bool fromDataAnnotation = false);
abstract member IncrementsBy : Nullable<int> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder
Public Function IncrementsBy (increment As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As IConventionSequenceBuilder

Parameters

increment
Nullable<Int32>

The amount to increment between values.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, null otherwise.

Applies to