UpdateSqlGenerator.AppendWhereClause 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
| Name | Description |
|---|---|
| AppendWhereClause(StringBuilder, IReadOnlyList<ColumnModification>) |
Appends a |
| AppendWhereClause(StringBuilder, IReadOnlyList<IColumnModification>) |
Appends a |
AppendWhereClause(StringBuilder, IReadOnlyList<ColumnModification>)
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
Appends a WHERE clause.
protected virtual void AppendWhereClause(System.Text.StringBuilder commandStringBuilder, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendWhereClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendWhereClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendWhereClause (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 from which to build the conditions.
Applies to
AppendWhereClause(StringBuilder, IReadOnlyList<IColumnModification>)
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
- Source:
- UpdateSqlGenerator.cs
Appends a WHERE clause.
protected virtual void AppendWhereClause(System.Text.StringBuilder commandStringBuilder, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> operations);
abstract member AppendWhereClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendWhereClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendWhereClause (commandStringBuilder As StringBuilder, operations As IReadOnlyList(Of IColumnModification))
Parameters
- commandStringBuilder
- StringBuilder
The builder to which the SQL should be appended.
- operations
- IReadOnlyList<IColumnModification>
The operations from which to build the conditions.