MigrationCommandListBuilder.Append Method

Definition

Overloads

Append(Object)

Appends the given object (as a string) to the command being built.

Append(String)

Appends the given string to the command being built.

Append(Object)

Appends the given object (as a string) to the command being built.

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

Parameters

o
Object

The object to append.

Returns

This builder so that additional calls can be chained.

Applies to

Append(String)

Appends the given string to the command being built.

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

Parameters

o
String

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to