Share via


ExpressionPrinter.AppendLine Method

Definition

Overloads

AppendLine()

Appends a new line to current output being built.

AppendLine(Object)
AppendLine(String)

Appends the given string and a new line to current output being built.

AppendLine()

Appends a new line to current output being built.

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

Returns

This printer so additional calls can be chained.

Applies to

AppendLine(Object)

public virtual System.Linq.Expressions.ExpressionVisitor AppendLine (object o);
abstract member AppendLine : obj -> System.Linq.Expressions.ExpressionVisitor
override this.AppendLine : obj -> System.Linq.Expressions.ExpressionVisitor
Public Overridable Function AppendLine (o As Object) As ExpressionVisitor

Parameters

o
Object

Returns

Applies to

AppendLine(String)

Appends the given string and a new line to current output being built.

public virtual System.Linq.Expressions.ExpressionVisitor AppendLine (string value);
abstract member AppendLine : string -> System.Linq.Expressions.ExpressionVisitor
override this.AppendLine : string -> System.Linq.Expressions.ExpressionVisitor
Public Overridable Function AppendLine (value As String) As ExpressionVisitor

Parameters

value
String

The string to append.

Returns

This printer so additional calls can be chained.

Applies to