Versions in this module Expand all Collapse all v0 v0.9.0 Feb 25, 2026 Changes in this version + func Count(ctx context.Context, db qrm.DB, fn func(count SelectStatement) SelectStatement) (int64, error) + func Create(ctx context.Context, db qrm.DB, stmt InsertStatement) (int64, error) + func Delete(ctx context.Context, db qrm.DB, stmt DeleteStatement) (int64, error) + func FindAll[T any](ctx context.Context, db qrm.DB, stmt SelectStatement) ([]T, error) + func FindOne[T any](ctx context.Context, db qrm.DB, stmt SelectStatement) (*T, error) + func Paginate[T any](ctx context.Context, db qrm.DB, fn func(query SelectStatement) SelectStatement, ...) ([]T, int64, error) + func Update(ctx context.Context, db qrm.DB, stmt UpdateStatement) (int64, error) + type M map[Column]any + func (m M) Split() (cols ColumnList, vals []any)