IndentedStringBuilder.AppendJoin 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
AppendJoin(IEnumerable<String>, String) |
Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string, |
AppendJoin(String, String[]) |
Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string, |
AppendJoin(IEnumerable<String>, String)
Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder AppendJoin (System.Collections.Generic.IEnumerable<string> values, string separator = ", ");
abstract member AppendJoin : seq<string> * string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.AppendJoin : seq<string> * string -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function AppendJoin (values As IEnumerable(Of String), Optional separator As String = ", ") As IndentedStringBuilder
Parameters
- values
- IEnumerable<String>
The values to concatenate.
- separator
- String
The separator.
Returns
This builder so that additional calls can be chained.
Applies to
AppendJoin(String, String[])
Concatenates the members of the given collection, using the specified separator between each member, and then appends the resulting string,
public virtual Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder AppendJoin (string separator, params string[] values);
abstract member AppendJoin : string * string[] -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
override this.AppendJoin : string * string[] -> Microsoft.EntityFrameworkCore.Infrastructure.IndentedStringBuilder
Public Overridable Function AppendJoin (separator As String, ParamArray values As String()) As IndentedStringBuilder
Parameters
- separator
- String
The separator.
- values
- String[]
The values to concatenate.
Returns
This builder so that additional calls can be chained.
Applies to
Entity Framework