UpdateSqlGenerator.AppendUpdateCommandHeader Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
AppendUpdateCommandHeader(StringBuilder, String, String, IReadOnlyList<ColumnModification>) |
Připojí fragment SQL pro spuštění |
AppendUpdateCommandHeader(StringBuilder, String, String, IReadOnlyList<IColumnModification>) |
Připojí fragment SQL pro spuštění |
AppendUpdateCommandHeader(StringBuilder, String, String, IReadOnlyList<ColumnModification>)
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
Připojí fragment SQL pro spuštění UPDATE
.
protected virtual void AppendUpdateCommandHeader (System.Text.StringBuilder commandStringBuilder, string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendUpdateCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendUpdateCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendUpdateCommandHeader (commandStringBuilder As StringBuilder, name As String, schema As String, operations 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.
- operations
- IReadOnlyList<ColumnModification>
Operace představující data, která se mají aktualizovat.
Platí pro
AppendUpdateCommandHeader(StringBuilder, String, String, IReadOnlyList<IColumnModification>)
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
- Zdroj:
- UpdateSqlGenerator.cs
Připojí fragment SQL pro spuštění UPDATE
.
protected virtual void AppendUpdateCommandHeader (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> operations);
abstract member AppendUpdateCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendUpdateCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendUpdateCommandHeader (commandStringBuilder As StringBuilder, name As String, schema As String, operations 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.
- operations
- IReadOnlyList<IColumnModification>
Operace představující data, která se mají aktualizovat.
Platí pro
Entity Framework