(ctx context.Context, sql string, values ...interface{})
| 193 | } |
| 194 | |
| 195 | func (c *g[T]) Exec(ctx context.Context, sql string, values ...interface{}) error { |
| 196 | var r T |
| 197 | return c.apply(ctx).Model(r).Exec(sql, values...).Error |
| 198 | } |
| 199 | |
| 200 | type createG[T any] struct { |
| 201 | chainG[T] |