SqlServerMigrationsSqlGenerator.SequenceOptions 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
SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder) |
Generates a SQL fragment configuring a sequence with the given options. |
SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder) |
Generates a SQL fragment configuring a sequence with the given options. |
SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder)
Generates a SQL fragment configuring a sequence with the given options.
protected override void SequenceOptions (string schema, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
protected override void SequenceOptions (string? schema, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel? model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.SequenceOptions : string * string * Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub SequenceOptions (schema As String, name As String, operation As SequenceOperation, model As IModel, builder As MigrationCommandListBuilder)
Parameters
- schema
- String
The schema that contains the sequence, or null
to use the default schema.
- name
- String
The sequence name.
- operation
- SequenceOperation
The sequence options.
- model
- IModel
The target model which may be null
if the operations exist without a model.
- builder
- MigrationCommandListBuilder
The command builder to use to add the SQL fragment.
Applies to
SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder)
Generates a SQL fragment configuring a sequence with the given options.
protected override void SequenceOptions (string schema, string name, int increment, long? minimumValue, long? maximumValue, bool cycle, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.SequenceOptions : string * string * int * Nullable<int64> * Nullable<int64> * bool * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub SequenceOptions (schema As String, name As String, increment As Integer, minimumValue As Nullable(Of Long), maximumValue As Nullable(Of Long), cycle As Boolean, model As IModel, builder As MigrationCommandListBuilder)
Parameters
- schema
- String
The schema that contains the sequence, or null
to use the default schema.
- name
- String
The sequence name.
- increment
- Int32
The amount to increment by to generate the next value in the sequence.
The minimum value supported by the sequence, or null
if none was specified.
The maximum value supported by the sequence, or null
if none was specified.
- cycle
- Boolean
Indicates whether or not the sequence will start again once the maximum value is reached.
- model
- IModel
The target model which may be null
if the operations exist without a model.
- builder
- MigrationCommandListBuilder
The command builder to use to add the SQL fragment.
Applies to
Entity Framework