共用方式為


UpdateAndSelectSqlGenerator.AppendDeleteAndSelectOperation 方法

定義

透過 DELETE 附加 SQL 以將資料列更新至所建置的命令,後面接著 SELECT 進行並行檢查。

protected virtual Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendDeleteAndSelectOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition, out bool requiresTransaction);
abstract member AppendDeleteAndSelectOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
override this.AppendDeleteAndSelectOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Protected Overridable Function AppendDeleteAndSelectOperation (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命令的 。

適用於