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