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()

Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs

Appends a new line to current output being built.

C#
public virtual Microsoft.EntityFrameworkCore.Query.ExpressionPrinter AppendLine ();

Returns

This printer so additional calls can be chained.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0

AppendLine(Object)

Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
C#
public virtual System.Linq.Expressions.ExpressionVisitor AppendLine (object o);

Parameters

o
Object

Returns

Applies to

Entity Framework Core 3.1 and Entity Framework Core 3.0
Product Versions
Entity Framework Core 3.0, 3.1

AppendLine(String)

Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs
Source:
ExpressionPrinter.cs

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

C#
public virtual System.Linq.Expressions.ExpressionVisitor AppendLine (string value);
C#
public virtual Microsoft.EntityFrameworkCore.Query.ExpressionPrinter AppendLine (string value);

Parameters

value
String

The string to append.

Returns

This printer so additional calls can be chained.

Applies to

Entity Framework Core 9.0 and other versions
Product Versions
Entity Framework Core 5.0, 6.0, 7.0, 8.0, 9.0