SqlServerMigrationsSqlGenerator.SequenceOptions 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
시퀀스에서 다음 값을 생성하기 위한 증분 크기입니다.
- cycle
- Boolean
최대값에 도달하면 시퀀스가 다시 시작될지 여부를 나타냅니다.
- model
- IModel
모델이 없는 작업이 있는 경우일 null
수 있는 대상 모델입니다.
- builder
- MigrationCommandListBuilder
SQL 조각을 추가하는 데 사용할 명령 작성기입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework