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

Method Select

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

Source from the content-addressed store, hash-verified

208}
209
210func (c createG[T]) Select(query string, args ...interface{}) CreateInterface[T] {
211 return createG[T]{c.with(func(db *DB) *DB {
212 return db.Select(query, args...)
213 })}
214}
215
216func (c createG[T]) Omit(columns ...string) CreateInterface[T] {
217 return createG[T]{c.with(func(db *DB) *DB {

Callers

nothing calls this directly

Calls 2

withMethod · 0.80
SelectMethod · 0.65

Tested by

no test coverage detected