Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.DefaultModel) predicate.DefaultModel
- func ID(id uuid.UUID) predicate.DefaultModel
- func IDEQ(id uuid.UUID) predicate.DefaultModel
- func IDGT(id uuid.UUID) predicate.DefaultModel
- func IDGTE(id uuid.UUID) predicate.DefaultModel
- func IDIn(ids ...uuid.UUID) predicate.DefaultModel
- func IDLT(id uuid.UUID) predicate.DefaultModel
- func IDLTE(id uuid.UUID) predicate.DefaultModel
- func IDNEQ(id uuid.UUID) predicate.DefaultModel
- func IDNotIn(ids ...uuid.UUID) predicate.DefaultModel
- func Name(v string) predicate.DefaultModel
- func NameContains(v string) predicate.DefaultModel
- func NameContainsFold(v string) predicate.DefaultModel
- func NameEQ(v string) predicate.DefaultModel
- func NameEqualFold(v string) predicate.DefaultModel
- func NameGT(v string) predicate.DefaultModel
- func NameGTE(v string) predicate.DefaultModel
- func NameHasPrefix(v string) predicate.DefaultModel
- func NameHasSuffix(v string) predicate.DefaultModel
- func NameIn(vs ...string) predicate.DefaultModel
- func NameLT(v string) predicate.DefaultModel
- func NameLTE(v string) predicate.DefaultModel
- func NameNEQ(v string) predicate.DefaultModel
- func NameNotIn(vs ...string) predicate.DefaultModel
- func Not(p predicate.DefaultModel) predicate.DefaultModel
- func Or(predicates ...predicate.DefaultModel) predicate.DefaultModel
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the defaultmodel type in the database. Label = "default_model" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // Table holds the table name of the defaultmodel in the database. Table = "default_models" )
Variables ¶
var Columns = []string{ FieldID, FieldName, }
Columns holds all SQL columns for defaultmodel fields.
Functions ¶
func And ¶
func And(predicates ...predicate.DefaultModel) predicate.DefaultModel
And groups predicates with the AND operator between them.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.DefaultModel
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.DefaultModel
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.DefaultModel
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.DefaultModel
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.DefaultModel
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.DefaultModel
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.DefaultModel
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.DefaultModel
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.DefaultModel
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.DefaultModel
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.DefaultModel
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.DefaultModel
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.DefaultModel
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.DefaultModel
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.DefaultModel
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.DefaultModel
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.DefaultModel
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.DefaultModel
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.DefaultModel
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.DefaultModel
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.DefaultModel
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.DefaultModel
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.DefaultModel) predicate.DefaultModel
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.DefaultModel) predicate.DefaultModel
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the DefaultModel queries.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.