UpdateSqlGenerator.AppendValues Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AppendValues(StringBuilder, String, String, IReadOnlyList<ColumnModification>)
Appends values after a AppendValuesHeader(StringBuilder, IReadOnlyList<ColumnModification>) call.
protected virtual void AppendValues (System.Text.StringBuilder commandStringBuilder, string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendValues : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendValues : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendValues (commandStringBuilder As StringBuilder, name As String, schema As String, operations As IReadOnlyList(Of ColumnModification))
Parameters
- commandStringBuilder
- StringBuilder
The builder to which the SQL should be appended.
- name
- String
The name of the table.
- schema
- String
The table schema, or null
to use the default schema.
- operations
- IReadOnlyList<ColumnModification>
The operations for which there are values.
Applies to
AppendValues(StringBuilder, String, String, IReadOnlyList<IColumnModification>)
Appends values after a AppendValuesHeader(StringBuilder, IReadOnlyList<IColumnModification>) call.
protected virtual void AppendValues (System.Text.StringBuilder commandStringBuilder, string name, string? schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> operations);
abstract member AppendValues : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendValues : System.Text.StringBuilder * string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendValues (commandStringBuilder As StringBuilder, name As String, schema As String, operations As IReadOnlyList(Of IColumnModification))
Parameters
- commandStringBuilder
- StringBuilder
The builder to which the SQL should be appended.
- name
- String
The name of the table.
- schema
- String
The table schema, or null
to use the default schema.
- operations
- IReadOnlyList<IColumnModification>
The operations for which there are values.
Applies to
AppendValues(StringBuilder, IReadOnlyList<ColumnModification>)
Appends values after a AppendValuesHeader(StringBuilder, IReadOnlyList<ColumnModification>) call.
protected virtual void AppendValues (System.Text.StringBuilder commandStringBuilder, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendValues : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendValues : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendValues (commandStringBuilder As StringBuilder, operations As IReadOnlyList(Of ColumnModification))
Parameters
- commandStringBuilder
- StringBuilder
The builder to which the SQL should be appended.
- operations
- IReadOnlyList<ColumnModification>
The operations for which there are values.
Applies to
Entity Framework