(query interface{}, args ...interface{})
| 265 | } |
| 266 | |
| 267 | func (c chainG[T]) Where(query interface{}, args ...interface{}) ChainInterface[T] { |
| 268 | return c.with(func(db *DB) *DB { |
| 269 | return db.Where(query, args...) |
| 270 | }) |
| 271 | } |
| 272 | |
| 273 | func (c chainG[T]) Not(query interface{}, args ...interface{}) ChainInterface[T] { |
| 274 | return c.with(func(db *DB) *DB { |