MigrationCommandListBuilder.AppendLines Method

Definition

Overloads

AppendLines(Object)

Appends the given object to the command being built as multiple lines of text. That is, each line in the passed object (as a string) is added as a line to the command being built. This results in the lines having the correct indentation.

AppendLines(String)

Appends the given object to the command being built as multiple lines of text. That is, each line in the passed string is added as a line to the command being built. This results in the lines having the correct indentation.

AppendLines(Object)

Appends the given object to the command being built as multiple lines of text. That is, each line in the passed object (as a string) is added as a line to the command being built. This results in the lines having the correct indentation.

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

Parameters

o
Object

The object to append.

Returns

This builder so that additional calls can be chained.

Applies to

AppendLines(String)

Appends the given object to the command being built as multiple lines of text. That is, each line in the passed string is added as a line to the command being built. This results in the lines having the correct indentation.

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

Parameters

value
String

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to