Versions in this module Expand all Collapse all v0 v0.11.4 Jan 7, 2023 Changes in this version + func Append(u *sql.UpdateBuilder, column string, elems []T, opts ...Option) + func HasKey(column string, opts ...Option) *sql.Predicate + func LenEQ(column string, size int, opts ...Option) *sql.Predicate + func LenGT(column string, size int, opts ...Option) *sql.Predicate + func LenGTE(column string, size int, opts ...Option) *sql.Predicate + func LenLT(column string, size int, opts ...Option) *sql.Predicate + func LenLTE(column string, size int, opts ...Option) *sql.Predicate + func LenNEQ(column string, size int, opts ...Option) *sql.Predicate + func LenPath(b *sql.Builder, column string, opts ...Option) + func ParsePath(dotpath string) ([]string, error) + func StringContains(column string, sub string, opts ...Option) *sql.Predicate + func StringHasPrefix(column string, prefix string, opts ...Option) *sql.Predicate + func StringHasSuffix(column string, suffix string, opts ...Option) *sql.Predicate + func ValueContains(column string, arg any, opts ...Option) *sql.Predicate + func ValueEQ(column string, arg any, opts ...Option) *sql.Predicate + func ValueGT(column string, arg any, opts ...Option) *sql.Predicate + func ValueGTE(column string, arg any, opts ...Option) *sql.Predicate + func ValueIn(column string, args []any, opts ...Option) *sql.Predicate + func ValueIsNotNull(column string, opts ...Option) *sql.Predicate + func ValueIsNull(column string, opts ...Option) *sql.Predicate + func ValueLT(column string, arg any, opts ...Option) *sql.Predicate + func ValueLTE(column string, arg any, opts ...Option) *sql.Predicate + func ValueNEQ(column string, arg any, opts ...Option) *sql.Predicate + func ValueNotIn(column string, args []any, opts ...Option) *sql.Predicate + func ValuePath(column string, opts ...Option) sql.Querier + type Option func(*PathOptions) + func Cast(typ string) Option + func DotPath(dotpath string) Option + func Path(path ...string) Option + func Unquote(unquote bool) Option + type PathOptions struct + Cast string + Ident string + Path []string + Unquote bool + func (p *PathOptions) Query() (string, []any)