SqlServerModelExtensions.SetIdentitySeed Method

Definition

Overloads

SetIdentitySeed(IConventionModel, Nullable<Int64>, Boolean)

Sets the default identity seed.

SetIdentitySeed(IConventionModel, Nullable<Int32>, Boolean)

Sets the default identity seed.

SetIdentitySeed(IMutableModel, Nullable<Int32>)

Sets the default identity seed.

SetIdentitySeed(IMutableModel, Nullable<Int64>)

Sets the default identity seed.

SetIdentitySeed(IConventionModel, Nullable<Int64>, Boolean)

Sets the default identity seed.

public static long? SetIdentitySeed (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, long? seed, bool fromDataAnnotation = false);
static member SetIdentitySeed : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Nullable<int64> * bool -> Nullable<int64>
<Extension()>
Public Function SetIdentitySeed (model As IConventionModel, seed As Nullable(Of Long), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Long)

Parameters

model
IConventionModel

The model.

seed
Nullable<Int64>

The value to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to

SetIdentitySeed(IConventionModel, Nullable<Int32>, Boolean)

Sets the default identity seed.

public static void SetIdentitySeed (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, int? seed, bool fromDataAnnotation = false);
public static int? SetIdentitySeed (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, int? seed, bool fromDataAnnotation = false);
static member SetIdentitySeed : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Nullable<int> * bool -> unit
static member SetIdentitySeed : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Nullable<int> * bool -> Nullable<int>
<Extension()>
Public Sub SetIdentitySeed (model As IConventionModel, seed As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false)
<Extension()>
Public Function SetIdentitySeed (model As IConventionModel, seed As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Integer)

Parameters

model
IConventionModel

The model.

seed
Nullable<Int32>

The value to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to

SetIdentitySeed(IMutableModel, Nullable<Int32>)

Sets the default identity seed.

public static void SetIdentitySeed (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, int? seed);
static member SetIdentitySeed : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Nullable<int> -> unit
<Extension()>
Public Sub SetIdentitySeed (model As IMutableModel, seed As Nullable(Of Integer))

Parameters

model
IMutableModel

The model.

seed
Nullable<Int32>

The value to set.

Applies to

SetIdentitySeed(IMutableModel, Nullable<Int64>)

Sets the default identity seed.

public static void SetIdentitySeed (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, long? seed);
static member SetIdentitySeed : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * Nullable<int64> -> unit
<Extension()>
Public Sub SetIdentitySeed (model As IMutableModel, seed As Nullable(Of Long))

Parameters

model
IMutableModel

The model.

seed
Nullable<Int64>

The value to set.

Applies to