次の方法で共有


UpdateAndSelectSqlGenerator.AppendInsertAndSelectOperation メソッド

定義

SQL を追加して、作成中のコマンドに行を挿入します。その後に INSERT を使用し、オプションの SELECT を使用してデータベースで生成された値を取得します。

protected virtual Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendInsertAndSelectOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition, out bool requiresTransaction);
abstract member AppendInsertAndSelectOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
override this.AppendInsertAndSelectOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Protected Overridable Function AppendInsertAndSelectOperation (commandStringBuilder As StringBuilder, command As IReadOnlyModificationCommand, commandPosition As Integer, ByRef requiresTransaction As Boolean) As ResultSetMapping

パラメーター

commandStringBuilder
StringBuilder

SQL を追加するビルダー。

command
IReadOnlyModificationCommand

削除操作を表す コマンド。

commandPosition
Int32

バッチ内のこのコマンドの序数。

requiresTransaction
Boolean

正常に動作するために、追加された SQL をトランザクションで実行する必要があるかどうかを返します。

戻り値

ResultSetMappingコマンドの 。

適用対象