MigrationCommandListBuilder.AppendLine Method

Definition

Overloads

AppendLine()

Starts a new line on the command being built.

AppendLine(Object)

Appends the given object (as a string) to the command being built, and then starts a new line.

AppendLine(String)

Appends the given string to the command being built, and then starts a new line.

AppendLine()

Starts a new line on the command being built.

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

Returns

This builder so that additional calls can be chained.

Applies to

AppendLine(Object)

Appends the given object (as a string) to the command being built, and then starts a new line.

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

Parameters

o
Object

The object to append.

Returns

This builder so that additional calls can be chained.

Applies to

AppendLine(String)

Appends the given string to the command being built, and then starts a new line.

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

Parameters

value
String

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to