MCPcopy Index your code
hub / github.com/ent/ent / JoinComma

Method JoinComma

dialect/sql/builder.go:3239–3241  ·  view source on GitHub ↗

JoinComma joins a list of Queries and adds comma between them.

(qs ...Querier)

Source from the content-addressed store, hash-verified

3237
3238// JoinComma joins a list of Queries and adds comma between them.
3239func (b *Builder) JoinComma(qs ...Querier) *Builder {
3240 return b.join(qs, ", ")
3241}
3242
3243// join a list of Queries to the builder with a given separator.
3244func (b *Builder) join(qs []Querier, sep string) *Builder {

Callers 1

QueryMethod · 0.80

Calls 1

joinMethod · 0.95

Tested by

no test coverage detected