共用方式為


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命令的 。

適用於