RelationalCommandBuilder.Append Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework