次の方法で共有


MigrationCommandListBuilder.Append メソッド

定義

オーバーロード

Append(Object)

ビルド中のコマンドに、指定されたオブジェクトを (文字列として) 追加します。

Append(String)

ビルド中のコマンドに指定された文字列を追加します。

Append(Object)

ビルド中のコマンドに、指定されたオブジェクトを (文字列として) 追加します。

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

パラメーター

o
Object

追加するオブジェクト。

戻り値

追加の呼び出しをチェーンできるように、このビルダー。

適用対象

Append(String)

ビルド中のコマンドに指定された文字列を追加します。

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

パラメーター

o
String

追加する文字列。

戻り値

追加の呼び出しをチェーンできるように、このビルダー。

適用対象