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

Method Select

generics.go:435–439  ·  view source on GitHub ↗
(query string, args ...interface{})

Source from the content-addressed store, hash-verified

433}
434
435func (c chainG[T]) Select(query string, args ...interface{}) ChainInterface[T] {
436 return c.with(func(db *DB) *DB {
437 return db.Select(query, args...)
438 })
439}
440
441func (c chainG[T]) Omit(columns ...string) ChainInterface[T] {
442 return c.with(func(db *DB) *DB {

Callers

nothing calls this directly

Calls 2

withMethod · 0.95
SelectMethod · 0.65

Tested by

no test coverage detected