UpdateSqlGenerator.AppendInsertCommand Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>) |
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>) |
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>) |
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>)
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an.
protected virtual void AppendInsertCommand (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> writeOperations, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> readOperations);
abstract member AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendInsertCommand (commandStringBuilder As StringBuilder, name As String, schema As String, writeOperations As IReadOnlyList(Of IColumnModification), readOperations As IReadOnlyList(Of IColumnModification))
Parameter
- commandStringBuilder
- StringBuilder
Der Generator, an den die SQL angefügt werden soll.
- name
- String
Der Name der Tabelle.
- schema
- String
Das Tabellenschema oder null
das Standardschema.
- writeOperations
- IReadOnlyList<IColumnModification>
Die Vorgänge mit den Werten, die für jede Spalte eingefügt werden sollen.
- readOperations
- IReadOnlyList<IColumnModification>
Die Vorgänge für Spaltenwerte, die zurückgelesen werden sollen.
Gilt für:
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>)
- Quelle:
- UpdateSqlGenerator.cs
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an.
protected virtual void AppendInsertCommand (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> writeOperations);
abstract member AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendInsertCommand (commandStringBuilder As StringBuilder, name As String, schema As String, writeOperations As IReadOnlyList(Of IColumnModification))
Parameter
- commandStringBuilder
- StringBuilder
Der Generator, an den die SQL angefügt werden soll.
- name
- String
Der Name der Tabelle.
- schema
- String
Das Tabellenschema oder null
das Standardschema.
- writeOperations
- IReadOnlyList<IColumnModification>
Die Vorgänge für jede Spalte.
Gilt für:
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>)
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
- Quelle:
- UpdateSqlGenerator.cs
Fügt einen SQL-Befehl zum Einfügen einer Zeile an die zu erstellenden Befehle an.
protected virtual void AppendInsertCommand (System.Text.StringBuilder commandStringBuilder, string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> writeOperations);
abstract member AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendInsertCommand : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendInsertCommand (commandStringBuilder As StringBuilder, name As String, schema As String, writeOperations As IReadOnlyList(Of ColumnModification))
Parameter
- commandStringBuilder
- StringBuilder
Der Generator, an den die SQL angefügt werden soll.
- name
- String
Der Name der Tabelle.
- schema
- String
Das Tabellenschema oder null
das Standardschema.
- writeOperations
- IReadOnlyList<ColumnModification>
Die Vorgänge für jede Spalte.
Gilt für:
Entity Framework