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

Struct IN

clause/expression.go:185–188  ·  view source on GitHub ↗

IN Whether a value is within a set of values

Source from the content-addressed store, hash-verified

183
184// IN Whether a value is within a set of values
185type IN struct {
186 Column interface{}
187 Values []interface{}
188}
189
190func (in IN) Build(builder Builder) {
191 builder.WriteQuoted(in.Column)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected