Sdílet prostřednictvím


UpdateSqlGenerator.AppendDeleteCommand Metoda

Definice

Přetížení

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>)

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>)

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>, Boolean)

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>)

Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

protected virtual void AppendDeleteCommand (System.Text.StringBuilder commandStringBuilder, string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> conditionOperations);
abstract member AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendDeleteCommand (commandStringBuilder As StringBuilder, name As String, schema As String, conditionOperations As IReadOnlyList(Of ColumnModification))

Parametry

commandStringBuilder
StringBuilder

Tvůrce, ke kterému se má připojit SQL.

name
String

Název tabulky.

schema
String

Schéma tabulky nebo null použití výchozího schématu.

conditionOperations
IReadOnlyList<ColumnModification>

Operace použité k vygenerování klauzule WHERE pro odstranění.

Platí pro

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>)

Zdroj:
UpdateSqlGenerator.cs

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

protected virtual void AppendDeleteCommand (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> conditionOperations);
abstract member AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendDeleteCommand (commandStringBuilder As StringBuilder, name As String, schema As String, conditionOperations As IReadOnlyList(Of IColumnModification))

Parametry

commandStringBuilder
StringBuilder

Tvůrce, ke kterému se má připojit SQL.

name
String

Název tabulky.

schema
String

Schéma tabulky nebo null použití výchozího schématu.

conditionOperations
IReadOnlyList<IColumnModification>

Operace použité k vygenerování klauzule WHERE pro odstranění.

Platí pro

AppendDeleteCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>, Boolean)

Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs
Zdroj:
UpdateSqlGenerator.cs

Připojí příkaz SQL pro odstranění řádku k vytvářeným příkazům.

protected virtual void AppendDeleteCommand (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> readOperations, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> conditionOperations, bool appendReturningOneClause = false);
abstract member AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * bool -> unit
override this.AppendDeleteCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * bool -> unit
Protected Overridable Sub AppendDeleteCommand (commandStringBuilder As StringBuilder, name As String, schema As String, readOperations As IReadOnlyList(Of IColumnModification), conditionOperations As IReadOnlyList(Of IColumnModification), Optional appendReturningOneClause As Boolean = false)

Parametry

commandStringBuilder
StringBuilder

Tvůrce, ke kterému se má připojit SQL.

name
String

Název tabulky.

schema
String

Schéma tabulky nebo null použití výchozího schématu.

readOperations
IReadOnlyList<IColumnModification>

Operace pro načtení hodnot sloupců.

conditionOperations
IReadOnlyList<IColumnModification>

Operace použité k vygenerování klauzule WHERE pro odstranění.

appendReturningOneClause
Boolean

Zda se má připojit další konstanta 1, která se má číst zpět.

Platí pro