RelationalCommandBuilderExtensions.AppendLines メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AppendLines(IRelationalCommandBuilder, Object) |
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。 |
AppendLines(IRelationalCommandBuilder, Object, Boolean) |
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。 |
AppendLines(IRelationalCommandBuilder, String, Boolean) |
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。 |
AppendLines(IRelationalCommandBuilder, Object)
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLines (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, object o);
static member AppendLines : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLines (commandBuilder As IRelationalCommandBuilder, o As Object) As IRelationalCommandBuilder
パラメーター
- commandBuilder
- IRelationalCommandBuilder
コマンド ビルダー。
- o
- Object
書き込まれるオブジェクト。
戻り値
複数の呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
AppendLines(IRelationalCommandBuilder, Object, Boolean)
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLines (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, object value, bool skipFinalNewline = false);
static member AppendLines : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * obj * bool -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLines (commandBuilder As IRelationalCommandBuilder, value As Object, Optional skipFinalNewline As Boolean = false) As IRelationalCommandBuilder
パラメーター
- commandBuilder
- IRelationalCommandBuilder
コマンド ビルダー。
- value
- Object
書き込まれるオブジェクト。
- skipFinalNewline
- Boolean
の場合 true
、最後の改行文字はスキップされます。
戻り値
複数の呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
AppendLines(IRelationalCommandBuilder, String, Boolean)
複数行のテキストを含む オブジェクトをコマンド テキストに追加します。 オブジェクトから読み取られた各行は、新しい行に追加されます。
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLines (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, string value, bool skipFinalNewline = false);
static member AppendLines : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * string * bool -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLines (commandBuilder As IRelationalCommandBuilder, value As String, Optional skipFinalNewline As Boolean = false) As IRelationalCommandBuilder
パラメーター
- commandBuilder
- IRelationalCommandBuilder
コマンド ビルダー。
- value
- String
書き込まれるオブジェクト。
- skipFinalNewline
- Boolean
の場合 true
、最後の改行文字はスキップされます。
戻り値
複数の呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
Entity Framework