SqlServerMigrationsSqlGenerator.SequenceOptions 메서드

정의

오버로드

SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder)

지정된 옵션을 사용하여 시퀀스를 구성하는 SQL 조각을 생성합니다.

SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder)

지정된 옵션을 사용하여 시퀀스를 구성하는 SQL 조각을 생성합니다.

SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder)

지정된 옵션을 사용하여 시퀀스를 구성하는 SQL 조각을 생성합니다.

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)

매개 변수

schema
String

시퀀스를 포함하는 스키마이거나 null 기본 스키마를 사용합니다.

name
String

시퀀스 이름입니다.

operation
SequenceOperation

시퀀스 옵션입니다.

model
IModel

모델이 없는 작업이 있는 경우일 null 수 있는 대상 모델입니다.

builder
MigrationCommandListBuilder

SQL 조각을 추가하는 데 사용할 명령 작성기입니다.

적용 대상

SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder)

지정된 옵션을 사용하여 시퀀스를 구성하는 SQL 조각을 생성합니다.

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)

매개 변수

schema
String

시퀀스를 포함하는 스키마이거나 null 기본 스키마를 사용합니다.

name
String

시퀀스 이름입니다.

increment
Int32

시퀀스에서 다음 값을 생성하기 위한 증분 크기입니다.

minimumValue
Nullable<Int64>

시퀀스에서 지원되는 최소값이거나 null , 지정되지 않은 경우 입니다.

maximumValue
Nullable<Int64>

시퀀스에서 지원되는 최대값이거나 null 지정되지 않은 경우 입니다.

cycle
Boolean

최대값에 도달하면 시퀀스가 다시 시작될지 여부를 나타냅니다.

model
IModel

모델이 없는 작업이 있는 경우일 null 수 있는 대상 모델입니다.

builder
MigrationCommandListBuilder

SQL 조각을 추가하는 데 사용할 명령 작성기입니다.

적용 대상