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

Method Table

generics.go:204–208  ·  view source on GitHub ↗
(name string, args ...interface{})

Source from the content-addressed store, hash-verified

202}
203
204func (c createG[T]) Table(name string, args ...interface{}) CreateInterface[T] {
205 return createG[T]{c.with(func(db *DB) *DB {
206 return db.Table(name, args...)
207 })}
208}
209
210func (c createG[T]) Select(query string, args ...interface{}) CreateInterface[T] {
211 return createG[T]{c.with(func(db *DB) *DB {

Callers

nothing calls this directly

Calls 2

withMethod · 0.80
TableMethod · 0.65

Tested by

no test coverage detected