RelationalCommandBuilderExtensions.AppendLine 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
AppendLine(IRelationalCommandBuilder) |
Appends a blank line to the command text. |
AppendLine(IRelationalCommandBuilder, String) |
Appends an object to the command text on a new line. |
AppendLine(IRelationalCommandBuilder, Object) |
Appends an object to the command text on a new line. |
AppendLine(IRelationalCommandBuilder)
Appends a blank line to the command text.
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLine (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder);
static member AppendLine : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLine (commandBuilder As IRelationalCommandBuilder) As IRelationalCommandBuilder
Parameters
- commandBuilder
- IRelationalCommandBuilder
The command builder.
Returns
The same builder instance so that multiple calls can be chained.
Applies to
AppendLine(IRelationalCommandBuilder, String)
Appends an object to the command text on a new line.
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLine (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, string value);
static member AppendLine : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * string -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLine (commandBuilder As IRelationalCommandBuilder, value As String) As IRelationalCommandBuilder
Parameters
- commandBuilder
- IRelationalCommandBuilder
The command builder.
- value
- String
The object to be written.
Returns
The same builder instance so that multiple calls can be chained.
Applies to
AppendLine(IRelationalCommandBuilder, Object)
Appends an object to the command text on a new line.
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLine (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, object o);
public static Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder AppendLine (this Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder commandBuilder, object value);
static member AppendLine : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
static member AppendLine : Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder * obj -> Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilder
<Extension()>
Public Function AppendLine (commandBuilder As IRelationalCommandBuilder, o As Object) As IRelationalCommandBuilder
<Extension()>
Public Function AppendLine (commandBuilder As IRelationalCommandBuilder, value As Object) As IRelationalCommandBuilder
Parameters
- commandBuilder
- IRelationalCommandBuilder
The command builder.
- ovalue
- Object
The object to be written.
Returns
The same builder instance so that multiple calls can be chained.
Applies to
Entity Framework