UpdateSqlGenerator.AppendInsertCommand Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>) |
Добавляет команду SQL для вставки строки в создаваемые команды. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>) |
Добавляет команду SQL для вставки строки в создаваемые команды. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>) |
Добавляет команду SQL для вставки строки в создаваемые команды. |
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>, IReadOnlyList<IColumnModification>)
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
Добавляет команду SQL для вставки строки в создаваемые команды.
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))
Параметры
- commandStringBuilder
- StringBuilder
Построитель, к которому следует добавить SQL.
- name
- String
Имя таблицы.
- schema
- String
Схема таблицы или null
для использования схемы по умолчанию.
- writeOperations
- IReadOnlyList<IColumnModification>
Операции со значениями для вставки для каждого столбца.
- readOperations
- IReadOnlyList<IColumnModification>
Операции для считывания значений столбцов.
Применяется к
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<IColumnModification>)
- Исходный код:
- UpdateSqlGenerator.cs
Добавляет команду SQL для вставки строки в создаваемые команды.
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))
Параметры
- commandStringBuilder
- StringBuilder
Построитель, к которому следует добавить SQL.
- name
- String
Имя таблицы.
- schema
- String
Схема таблицы или null
для использования схемы по умолчанию.
- writeOperations
- IReadOnlyList<IColumnModification>
Операции для каждого столбца.
Применяется к
AppendInsertCommand(StringBuilder, String, String, IReadOnlyList<ColumnModification>)
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
- Исходный код:
- UpdateSqlGenerator.cs
Добавляет команду SQL для вставки строки в создаваемые команды.
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))
Параметры
- commandStringBuilder
- StringBuilder
Построитель, к которому следует добавить SQL.
- name
- String
Имя таблицы.
- schema
- String
Схема таблицы или null
для использования схемы по умолчанию.
- writeOperations
- IReadOnlyList<ColumnModification>
Операции для каждого столбца.
Применяется к
Entity Framework