MigrationCommandListBuilder.AppendLine 메서드

정의

오버로드

AppendLine()

빌드 중인 명령에서 새 줄을 시작합니다.

AppendLine(Object)

지정된 개체를 빌드 중인 명령에 문자열로 추가한 다음 새 줄을 시작합니다.

AppendLine(String)

지정된 문자열을 빌드 중인 명령에 추가한 다음 새 줄을 시작합니다.

AppendLine()

빌드 중인 명령에서 새 줄을 시작합니다.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine ();
abstract member AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine () As MigrationCommandListBuilder

반환

이 작성기에서는 추가 호출을 연결할 수 있습니다.

적용 대상

AppendLine(Object)

지정된 개체를 빌드 중인 명령에 문자열로 추가한 다음 새 줄을 시작합니다.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine (object o);
abstract member AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (o As Object) As MigrationCommandListBuilder

매개 변수

o
Object

추가할 개체입니다.

반환

이 작성기에서는 추가 호출을 연결할 수 있습니다.

적용 대상

AppendLine(String)

지정된 문자열을 빌드 중인 명령에 추가한 다음 새 줄을 시작합니다.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine (string value);
abstract member AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (value As String) As MigrationCommandListBuilder

매개 변수

value
String

추가할 문자열입니다.

반환

이 작성기에서는 추가 호출을 연결할 수 있습니다.

적용 대상