IUpdateSqlGenerator.AppendNextSequenceValueOperation Method

Definition

Generates a SQL fragment that will query for the next value from the given sequence and appends it to the full command being built by the given StringBuilder.

public void AppendNextSequenceValueOperation (System.Text.StringBuilder commandStringBuilder, string name, string schema);
public void AppendNextSequenceValueOperation (System.Text.StringBuilder commandStringBuilder, string name, string? schema);
abstract member AppendNextSequenceValueOperation : System.Text.StringBuilder * string * string -> unit
Public Sub AppendNextSequenceValueOperation (commandStringBuilder As StringBuilder, name As String, schema As String)

Parameters

commandStringBuilder
StringBuilder

The builder to which the SQL fragment should be appended.

name
String

The name of the sequence.

schema
String

The schema that contains the sequence, or null to use the default schema.

Applies to