Sdílet prostřednictvím


UpdateSqlGenerator.AppendInsertCommandHeader Metoda

Definice

Přetížení

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

Připojí fragment SQL pro spuštění INSERT.

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

Připojí fragment SQL pro spuštění INSERT.

AppendInsertCommandHeader(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í INSERT.

protected virtual void AppendInsertCommandHeader (System.Text.StringBuilder commandStringBuilder, string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendInsertCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendInsertCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendInsertCommandHeader (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í vložit.

Platí pro

AppendInsertCommandHeader(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í INSERT.

protected virtual void AppendInsertCommandHeader (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> operations);
abstract member AppendInsertCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendInsertCommandHeader : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendInsertCommandHeader (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í vložit.

Platí pro