UpdateSqlGenerator.AppendWhereAffectedClause 方法

定义

重载

AppendWhereAffectedClause(StringBuilder, IReadOnlyList<ColumnModification>)

追加涉及 WHERE 受影响的行的子句。

AppendWhereAffectedClause(StringBuilder, IReadOnlyList<IColumnModification>)

追加涉及 WHERE 受影响的行的子句。

AppendWhereAffectedClause(StringBuilder, IReadOnlyList<ColumnModification>)

追加涉及 WHERE 受影响的行的子句。

protected virtual void AppendWhereAffectedClause (System.Text.StringBuilder commandStringBuilder, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> operations);
abstract member AppendWhereAffectedClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
override this.AppendWhereAffectedClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> unit
Protected Overridable Sub AppendWhereAffectedClause (commandStringBuilder As StringBuilder, operations As IReadOnlyList(Of ColumnModification))

参数

commandStringBuilder
StringBuilder

SQL 应追加到的生成器。

operations
IReadOnlyList<ColumnModification>

从中生成条件的操作。

适用于

AppendWhereAffectedClause(StringBuilder, IReadOnlyList<IColumnModification>)

追加涉及 WHERE 受影响的行的子句。

protected virtual void AppendWhereAffectedClause (System.Text.StringBuilder commandStringBuilder, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> operations);
abstract member AppendWhereAffectedClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
override this.AppendWhereAffectedClause : System.Text.StringBuilder * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.IColumnModification> -> unit
Protected Overridable Sub AppendWhereAffectedClause (commandStringBuilder As StringBuilder, operations As IReadOnlyList(Of IColumnModification))

参数

commandStringBuilder
StringBuilder

SQL 应追加到的生成器。

operations
IReadOnlyList<IColumnModification>

从中生成条件的操作。

适用于