IRelationalCommandBuilder.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 Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append (object value);
abstract member Append : obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public 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.

Applies to

Append(String)

Appends an object to the command text.

public Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append (string value);
abstract member Append : string -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public 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.

Applies to