Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.User) predicate.User
- func ID(id int) predicate.User
- func IDEQ(id int) predicate.User
- func IDGT(id int) predicate.User
- func IDGTE(id int) predicate.User
- func IDIn(ids ...int) predicate.User
- func IDLT(id int) predicate.User
- func IDLTE(id int) predicate.User
- func IDNEQ(id int) predicate.User
- func IDNotIn(ids ...int) predicate.User
- func LabelContains(v string) predicate.User
- func LabelContainsFold(v string) predicate.User
- func LabelEQ(v string) predicate.User
- func LabelEqualFold(v string) predicate.User
- func LabelGT(v string) predicate.User
- func LabelGTE(v string) predicate.User
- func LabelHasPrefix(v string) predicate.User
- func LabelHasSuffix(v string) predicate.User
- func LabelIn(vs ...string) predicate.User
- func LabelIsNil() predicate.User
- func LabelLT(v string) predicate.User
- func LabelLTE(v string) predicate.User
- func LabelNEQ(v string) predicate.User
- func LabelNotIn(vs ...string) predicate.User
- func LabelNotNil() predicate.User
- func Name(v string) predicate.User
- func NameContains(v string) predicate.User
- func NameContainsFold(v string) predicate.User
- func NameEQ(v string) predicate.User
- func NameEqualFold(v string) predicate.User
- func NameGT(v string) predicate.User
- func NameGTE(v string) predicate.User
- func NameHasPrefix(v string) predicate.User
- func NameHasSuffix(v string) predicate.User
- func NameIn(vs ...string) predicate.User
- func NameIsNil() predicate.User
- func NameLT(v string) predicate.User
- func NameLTE(v string) predicate.User
- func NameNEQ(v string) predicate.User
- func NameNotIn(vs ...string) predicate.User
- func NameNotNil() predicate.User
- func Not(p predicate.User) predicate.User
- func Or(predicates ...predicate.User) predicate.User
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the user type in the database. Label = "user" // FieldID holds the string denoting the id field in the database. FieldID = "user_id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldLabel holds the string denoting the label field in the database. FieldLabel = "label" // Table holds the table name of the user in the database. Table = "Users" )
Variables ¶
var Columns = []string{ FieldID, FieldName, FieldLabel, }
Columns holds all SQL columns for user fields.
Functions ¶
func LabelContains ¶ added in v0.7.0
LabelContains applies the Contains predicate on the "label" field.
func LabelContainsFold ¶ added in v0.7.0
LabelContainsFold applies the ContainsFold predicate on the "label" field.
func LabelEqualFold ¶ added in v0.7.0
LabelEqualFold applies the EqualFold predicate on the "label" field.
func LabelHasPrefix ¶ added in v0.7.0
LabelHasPrefix applies the HasPrefix predicate on the "label" field.
func LabelHasSuffix ¶ added in v0.7.0
LabelHasSuffix applies the HasSuffix predicate on the "label" field.
func LabelIsNil ¶ added in v0.7.0
LabelIsNil applies the IsNil predicate on the "label" field.
func LabelNotIn ¶ added in v0.7.0
LabelNotIn applies the NotIn predicate on the "label" field.
func LabelNotNil ¶ added in v0.7.0
LabelNotNil applies the NotNil predicate on the "label" field.
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameNotNil ¶
NameNotNil applies the NotNil predicate on the "name" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.