(offset int)
| 283 | } |
| 284 | |
| 285 | func (c chainG[T]) Limit(offset int) ChainInterface[T] { |
| 286 | return c.with(func(db *DB) *DB { |
| 287 | return db.Limit(offset) |
| 288 | }) |
| 289 | } |
| 290 | |
| 291 | func (c chainG[T]) Offset(offset int) ChainInterface[T] { |
| 292 | return c.with(func(db *DB) *DB { |