Share via


IRelationalCommandBuilder.Append Method

Definition

Overloads

Name Description
Append(Object)

Appends an object to the command text.

Append(String)

Appends an object to the command text.

Append(FormattableString, Boolean)

Appends an object to the command text.

Append(String, Boolean)

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)

Source:
IRelationalCommandBuilder.cs
Source:
IRelationalCommandBuilder.cs
Source:
IRelationalCommandBuilder.cs

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

Append(FormattableString, Boolean)

Source:
IRelationalCommandBuilder.cs

Appends an object to the command text.

public Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append(FormattableString value, bool sensitive = false);
abstract member Append : FormattableString * bool -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public Function Append (value As FormattableString, Optional sensitive As Boolean = false) As IRelationalCommandBuilder

Parameters

value
FormattableString

The object to be written.

sensitive
Boolean

Whether the value is sensitive and should be redacted (i.e. in log).

Returns

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

Applies to

Append(String, Boolean)

Source:
IRelationalCommandBuilder.cs

Appends an object to the command text.

public Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder Append(string value, bool sensitive = false);
abstract member Append : string * bool -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
Public Function Append (value As String, Optional sensitive As Boolean = false) As IRelationalCommandBuilder

Parameters

value
String

The object to be written.

sensitive
Boolean

Whether the value is sensitive and should be redacted (i.e. in log).

Returns

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

Applies to