Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.ProductColor) predicate.ProductColor
- func ColorCode(v string) predicate.ProductColor
- func ColorCodeContains(v string) predicate.ProductColor
- func ColorCodeContainsFold(v string) predicate.ProductColor
- func ColorCodeEQ(v string) predicate.ProductColor
- func ColorCodeEqualFold(v string) predicate.ProductColor
- func ColorCodeGT(v string) predicate.ProductColor
- func ColorCodeGTE(v string) predicate.ProductColor
- func ColorCodeHasPrefix(v string) predicate.ProductColor
- func ColorCodeHasSuffix(v string) predicate.ProductColor
- func ColorCodeIn(vs ...string) predicate.ProductColor
- func ColorCodeLT(v string) predicate.ProductColor
- func ColorCodeLTE(v string) predicate.ProductColor
- func ColorCodeNEQ(v string) predicate.ProductColor
- func ColorCodeNotIn(vs ...string) predicate.ProductColor
- func CreatedAt(v time.Time) predicate.ProductColor
- func CreatedAtEQ(v time.Time) predicate.ProductColor
- func CreatedAtGT(v time.Time) predicate.ProductColor
- func CreatedAtGTE(v time.Time) predicate.ProductColor
- func CreatedAtIn(vs ...time.Time) predicate.ProductColor
- func CreatedAtLT(v time.Time) predicate.ProductColor
- func CreatedAtLTE(v time.Time) predicate.ProductColor
- func CreatedAtNEQ(v time.Time) predicate.ProductColor
- func CreatedAtNotIn(vs ...time.Time) predicate.ProductColor
- func ID(id string) predicate.ProductColor
- func IDContainsFold(id string) predicate.ProductColor
- func IDEQ(id string) predicate.ProductColor
- func IDEqualFold(id string) predicate.ProductColor
- func IDGT(id string) predicate.ProductColor
- func IDGTE(id string) predicate.ProductColor
- func IDIn(ids ...string) predicate.ProductColor
- func IDLT(id string) predicate.ProductColor
- func IDLTE(id string) predicate.ProductColor
- func IDNEQ(id string) predicate.ProductColor
- func IDNotIn(ids ...string) predicate.ProductColor
- func Name(v string) predicate.ProductColor
- func NameContains(v string) predicate.ProductColor
- func NameContainsFold(v string) predicate.ProductColor
- func NameEQ(v string) predicate.ProductColor
- func NameEqualFold(v string) predicate.ProductColor
- func NameGT(v string) predicate.ProductColor
- func NameGTE(v string) predicate.ProductColor
- func NameHasPrefix(v string) predicate.ProductColor
- func NameHasSuffix(v string) predicate.ProductColor
- func NameIn(vs ...string) predicate.ProductColor
- func NameLT(v string) predicate.ProductColor
- func NameLTE(v string) predicate.ProductColor
- func NameNEQ(v string) predicate.ProductColor
- func NameNotIn(vs ...string) predicate.ProductColor
- func Not(p predicate.ProductColor) predicate.ProductColor
- func Or(predicates ...predicate.ProductColor) predicate.ProductColor
- func UpdatedAt(v time.Time) predicate.ProductColor
- func UpdatedAtEQ(v time.Time) predicate.ProductColor
- func UpdatedAtGT(v time.Time) predicate.ProductColor
- func UpdatedAtGTE(v time.Time) predicate.ProductColor
- func UpdatedAtIn(vs ...time.Time) predicate.ProductColor
- func UpdatedAtLT(v time.Time) predicate.ProductColor
- func UpdatedAtLTE(v time.Time) predicate.ProductColor
- func UpdatedAtNEQ(v time.Time) predicate.ProductColor
- func UpdatedAtNotIn(vs ...time.Time) predicate.ProductColor
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the productcolor type in the database. Label = "product_color" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldColorCode holds the string denoting the color_code field in the database. FieldColorCode = "color_code" // Table holds the table name of the productcolor in the database. Table = "product_color" )
Variables ¶
var ( Hooks [1]ent.Hook // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // ColorCodeValidator is a validator for the "color_code" field. It is called by the builders before save. ColorCodeValidator func(string) error // IDValidator is a validator for the "id" field. It is called by the builders before save. IDValidator func(string) error )
Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:
import _ "github.com/thaiha1607/foursquare_server/ent/runtime"
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldName, FieldColorCode, }
Columns holds all SQL columns for productcolor fields.
Functions ¶
func And ¶
func And(predicates ...predicate.ProductColor) predicate.ProductColor
And groups predicates with the AND operator between them.
func ColorCode ¶
func ColorCode(v string) predicate.ProductColor
ColorCode applies equality check predicate on the "color_code" field. It's identical to ColorCodeEQ.
func ColorCodeContains ¶
func ColorCodeContains(v string) predicate.ProductColor
ColorCodeContains applies the Contains predicate on the "color_code" field.
func ColorCodeContainsFold ¶
func ColorCodeContainsFold(v string) predicate.ProductColor
ColorCodeContainsFold applies the ContainsFold predicate on the "color_code" field.
func ColorCodeEQ ¶
func ColorCodeEQ(v string) predicate.ProductColor
ColorCodeEQ applies the EQ predicate on the "color_code" field.
func ColorCodeEqualFold ¶
func ColorCodeEqualFold(v string) predicate.ProductColor
ColorCodeEqualFold applies the EqualFold predicate on the "color_code" field.
func ColorCodeGT ¶
func ColorCodeGT(v string) predicate.ProductColor
ColorCodeGT applies the GT predicate on the "color_code" field.
func ColorCodeGTE ¶
func ColorCodeGTE(v string) predicate.ProductColor
ColorCodeGTE applies the GTE predicate on the "color_code" field.
func ColorCodeHasPrefix ¶
func ColorCodeHasPrefix(v string) predicate.ProductColor
ColorCodeHasPrefix applies the HasPrefix predicate on the "color_code" field.
func ColorCodeHasSuffix ¶
func ColorCodeHasSuffix(v string) predicate.ProductColor
ColorCodeHasSuffix applies the HasSuffix predicate on the "color_code" field.
func ColorCodeIn ¶
func ColorCodeIn(vs ...string) predicate.ProductColor
ColorCodeIn applies the In predicate on the "color_code" field.
func ColorCodeLT ¶
func ColorCodeLT(v string) predicate.ProductColor
ColorCodeLT applies the LT predicate on the "color_code" field.
func ColorCodeLTE ¶
func ColorCodeLTE(v string) predicate.ProductColor
ColorCodeLTE applies the LTE predicate on the "color_code" field.
func ColorCodeNEQ ¶
func ColorCodeNEQ(v string) predicate.ProductColor
ColorCodeNEQ applies the NEQ predicate on the "color_code" field.
func ColorCodeNotIn ¶
func ColorCodeNotIn(vs ...string) predicate.ProductColor
ColorCodeNotIn applies the NotIn predicate on the "color_code" field.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.ProductColor
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.ProductColor
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.ProductColor
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.ProductColor
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.ProductColor
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.ProductColor
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.ProductColor
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.ProductColor
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.ProductColor
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func IDContainsFold ¶
func IDContainsFold(id string) predicate.ProductColor
IDContainsFold applies the ContainsFold predicate on the ID field.
func IDEQ ¶
func IDEQ(id string) predicate.ProductColor
IDEQ applies the EQ predicate on the ID field.
func IDEqualFold ¶
func IDEqualFold(id string) predicate.ProductColor
IDEqualFold applies the EqualFold predicate on the ID field.
func IDGT ¶
func IDGT(id string) predicate.ProductColor
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id string) predicate.ProductColor
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...string) predicate.ProductColor
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id string) predicate.ProductColor
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id string) predicate.ProductColor
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id string) predicate.ProductColor
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...string) predicate.ProductColor
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.ProductColor
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.ProductColor
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.ProductColor
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.ProductColor
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.ProductColor
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.ProductColor
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.ProductColor
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.ProductColor
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.ProductColor
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.ProductColor
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.ProductColor
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.ProductColor
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.ProductColor
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.ProductColor
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.ProductColor) predicate.ProductColor
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.ProductColor) predicate.ProductColor
Or groups predicates with the OR operator between them.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.ProductColor
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.ProductColor
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.ProductColor
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.ProductColor
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.ProductColor
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.ProductColor
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.ProductColor
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.ProductColor
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.ProductColor
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
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 ProductColor queries.
func ByColorCode ¶
func ByColorCode(opts ...sql.OrderTermOption) OrderOption
ByColorCode orders the results by the color_code field.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
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.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.