Freigeben über


IUpdateSqlGenerator.AppendDeleteOperation Methode

Definition

Überlädt

AppendDeleteOperation(StringBuilder, IReadOnlyModificationCommand, Int32)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

AppendDeleteOperation(StringBuilder, ModificationCommand, Int32)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

AppendDeleteOperation(StringBuilder, IReadOnlyModificationCommand, Int32, Boolean)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

AppendDeleteOperation(StringBuilder, IReadOnlyModificationCommand, Int32)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

public Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendDeleteOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition);
public virtual Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendDeleteOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition);
abstract member AppendDeleteOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
abstract member AppendDeleteOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
override this.AppendDeleteOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Public Function AppendDeleteOperation (commandStringBuilder As StringBuilder, command As IReadOnlyModificationCommand, commandPosition As Integer) As ResultSetMapping
Public Overridable Function AppendDeleteOperation (commandStringBuilder As StringBuilder, command As IReadOnlyModificationCommand, commandPosition As Integer) As ResultSetMapping

Parameter

commandStringBuilder
StringBuilder

Der Generator, an den die SQL angefügt werden soll.

command
IReadOnlyModificationCommand

Der Befehl, der den Löschvorgang darstellt.

commandPosition
Int32

Die Ordnungszahl dieses Befehls im Batch.

Gibt zurück

Die ResultSetMapping für den Befehl.

Gilt für:

AppendDeleteOperation(StringBuilder, ModificationCommand, Int32)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

public Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendDeleteOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.ModificationCommand command, int commandPosition);
abstract member AppendDeleteOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.ModificationCommand * int -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Public Function AppendDeleteOperation (commandStringBuilder As StringBuilder, command As ModificationCommand, commandPosition As Integer) As ResultSetMapping

Parameter

commandStringBuilder
StringBuilder

Der Generator, an den die SQL angefügt werden soll.

command
ModificationCommand

Der Befehl, der den Löschvorgang darstellt.

commandPosition
Int32

Die Ordnungszahl dieses Befehls im Batch.

Gibt zurück

Die ResultSetMapping für den Befehl.

Gilt für:

AppendDeleteOperation(StringBuilder, IReadOnlyModificationCommand, Int32, Boolean)

Fügt einen SQL-Befehl zum Löschen einer Zeile an die zu erstellenden Befehle an.

public Microsoft.EntityFrameworkCore.Update.ResultSetMapping AppendDeleteOperation (System.Text.StringBuilder commandStringBuilder, Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand command, int commandPosition, out bool requiresTransaction);
abstract member AppendDeleteOperation : System.Text.StringBuilder * Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand * int * bool -> Microsoft.EntityFrameworkCore.Update.ResultSetMapping
Public Function AppendDeleteOperation (commandStringBuilder As StringBuilder, command As IReadOnlyModificationCommand, commandPosition As Integer, ByRef requiresTransaction As Boolean) As ResultSetMapping

Parameter

commandStringBuilder
StringBuilder

Der Generator, an den die SQL angefügt werden soll.

command
IReadOnlyModificationCommand

Der Befehl, der den Löschvorgang darstellt.

commandPosition
Int32

Die Ordnungszahl dieses Befehls im Batch.

requiresTransaction
Boolean

Gibt zurück, ob die angefügte SQL-Instanz in einer Transaktion ausgeführt werden muss, um ordnungsgemäß zu funktionieren.

Gibt zurück

Die ResultSetMapping für den Befehl.

Gilt für: