SqlServerMigrationsSqlGenerator.DropIndexes 메서드

정의

오버로드

DropIndexes(IEnumerable<IIndex>, MigrationCommandListBuilder)

지정된 인덱스를 삭제하는 SQL을 생성합니다.

DropIndexes(IEnumerable<ITableIndex>, MigrationCommandListBuilder)

지정된 인덱스를 삭제하는 SQL을 생성합니다.

DropIndexes(IProperty, MigrationCommandListBuilder)

DropIndexes(IEnumerable<IIndex>, MigrationCommandListBuilder)

지정된 인덱스를 삭제하는 SQL을 생성합니다.

protected virtual void DropIndexes (System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IIndex> indexes, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
abstract member DropIndexes : seq<Microsoft.EntityFrameworkCore.Metadata.IIndex> * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
override this.DropIndexes : seq<Microsoft.EntityFrameworkCore.Metadata.IIndex> * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub DropIndexes (indexes As IEnumerable(Of IIndex), builder As MigrationCommandListBuilder)

매개 변수

indexes
IEnumerable<IIndex>

삭제할 인덱스입니다.

builder
MigrationCommandListBuilder

명령을 빌드하는 데 사용할 명령 작성기입니다.

적용 대상

DropIndexes(IEnumerable<ITableIndex>, MigrationCommandListBuilder)

지정된 인덱스를 삭제하는 SQL을 생성합니다.

protected virtual void DropIndexes (System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.ITableIndex> indexes, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
abstract member DropIndexes : seq<Microsoft.EntityFrameworkCore.Metadata.ITableIndex> * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
override this.DropIndexes : seq<Microsoft.EntityFrameworkCore.Metadata.ITableIndex> * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub DropIndexes (indexes As IEnumerable(Of ITableIndex), builder As MigrationCommandListBuilder)

매개 변수

indexes
IEnumerable<ITableIndex>

삭제할 인덱스입니다.

builder
MigrationCommandListBuilder

명령을 빌드하는 데 사용할 명령 작성기입니다.

적용 대상

DropIndexes(IProperty, MigrationCommandListBuilder)

protected virtual void DropIndexes (Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
abstract member DropIndexes : Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
override this.DropIndexes : Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub DropIndexes (property As IProperty, builder As MigrationCommandListBuilder)

매개 변수

property
IProperty

적용 대상