IConventionSequenceBuilder.HasMin(Nullable<Int64>, Boolean) Method

Definition

Sets the minimum value for the sequence.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder HasMin (long? minimum, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder? HasMin (long? minimum, bool fromDataAnnotation = false);
abstract member HasMin : Nullable<int64> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSequenceBuilder
Public Function HasMin (minimum As Nullable(Of Long), Optional fromDataAnnotation As Boolean = false) As IConventionSequenceBuilder

Parameters

minimum
Nullable<Int64>

The minimum value for the sequence.

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