Share via


MigrationCommandListBuilder.AppendLine Method

Definition

Overloads

Name Description
AppendLine()

Starts a new line on the command being built.

AppendLine(FormattableString)

Appends the given string to the command being built, and then starts a new line.

AppendLine(Object)

Appends the given object (as a string) to the command being built, and then starts a new line.

AppendLine(String)

Appends the given string to the command being built, and then starts a new line.

AppendLine()

Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs

Starts a new line on the command being built.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine();
abstract member AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine () As MigrationCommandListBuilder

Returns

This builder so that additional calls can be chained.

Applies to

AppendLine(FormattableString)

Source:
MigrationCommandListBuilder.cs

Appends the given string to the command being built, and then starts a new line.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine(FormattableString value);
abstract member AppendLine : FormattableString -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : FormattableString -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (value As FormattableString) As MigrationCommandListBuilder

Parameters

value
FormattableString

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to

AppendLine(Object)

Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs

Appends the given object (as a string) to the command being built, and then starts a new line.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine(object o);
abstract member AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (o As Object) As MigrationCommandListBuilder

Parameters

o
Object

The object to append.

Returns

This builder so that additional calls can be chained.

Applies to

AppendLine(String)

Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs
Source:
MigrationCommandListBuilder.cs

Appends the given string to the command being built, and then starts a new line.

public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine(string value);
abstract member AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (value As String) As MigrationCommandListBuilder

Parameters

value
String

The string to append.

Returns

This builder so that additional calls can be chained.

Applies to