(query string, args ...interface{})
| 208 | } |
| 209 | |
| 210 | func (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 | |
| 216 | func (c createG[T]) Omit(columns ...string) CreateInterface[T] { |
| 217 | return createG[T]{c.with(func(db *DB) *DB { |