Share via


RelationalCommandBuilder.Append Method

Definition

Overloads

Append(Object)

Appends an object to the command text.

Append(String)

Appends an object to the command text.

Append(Object)

Appends an object to the command text.

public virtual Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append (object value);
abstract member Append : obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
override this.Append : obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public Overridable Function Append (value As Object) As IRelationalCommandBuilder

Parameters

value
Object

The object to be written.

Returns

The same builder instance so that multiple calls can be chained.

Implements

Applies to

Append(String)

Appends an object to the command text.

public virtual Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append (string value);
abstract member Append : string -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
override this.Append : string -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public Overridable Function Append (value As String) As IRelationalCommandBuilder

Parameters

value
String

The object to be written.

Returns

The same builder instance so that multiple calls can be chained.

Implements

Applies to