MCPcopy
hub / github.com/go-gorm/gorm / Build

Method Build

clause/expression.go:342–346  ·  view source on GitHub ↗
(builder Builder)

Source from the content-addressed store, hash-verified

340type Lte Eq
341
342func (lte Lte) Build(builder Builder) {
343 builder.WriteQuoted(lte.Column)
344 builder.WriteString(" <= ")
345 builder.AddVar(builder, lte.Value)
346}
347
348func (lte Lte) NegationBuild(builder Builder) {
349 Gt(lte).Build(builder)

Callers

nothing calls this directly

Calls 3

WriteQuotedMethod · 0.65
WriteStringMethod · 0.65
AddVarMethod · 0.65

Tested by

no test coverage detected