ExpressionPrinter.AppendLines 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
AppendLines(Object, Boolean) | |
AppendLines(String, Boolean) |
Appends all the lines to current output being built. |
AppendLines(Object, Boolean)
public virtual Microsoft.EntityFrameworkCore.Query.ExpressionPrinter AppendLines (object o, bool skipFinalNewline = false);
abstract member AppendLines : obj * bool -> Microsoft.EntityFrameworkCore.Query.ExpressionPrinter
override this.AppendLines : obj * bool -> Microsoft.EntityFrameworkCore.Query.ExpressionPrinter
Public Overridable Function AppendLines (o As Object, Optional skipFinalNewline As Boolean = false) As ExpressionPrinter
Parameters
- o
- Object
- skipFinalNewline
- Boolean
Returns
Applies to
AppendLines(String, Boolean)
Appends all the lines to current output being built.
public virtual Microsoft.EntityFrameworkCore.Query.ExpressionPrinter AppendLines (string value, bool skipFinalNewline = false);
abstract member AppendLines : string * bool -> Microsoft.EntityFrameworkCore.Query.ExpressionPrinter
override this.AppendLines : string * bool -> Microsoft.EntityFrameworkCore.Query.ExpressionPrinter
Public Overridable Function AppendLines (value As String, Optional skipFinalNewline As Boolean = false) As ExpressionPrinter
Parameters
- value
- String
The string to append.
- skipFinalNewline
- Boolean
If true, then a terminating new line is not added.
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