Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.EntityTaxInformation) predicate.EntityTaxInformation
- func ID(id int) predicate.EntityTaxInformation
- func IDEQ(id int) predicate.EntityTaxInformation
- func IDGT(id int) predicate.EntityTaxInformation
- func IDGTE(id int) predicate.EntityTaxInformation
- func IDIn(ids ...int) predicate.EntityTaxInformation
- func IDLT(id int) predicate.EntityTaxInformation
- func IDLTE(id int) predicate.EntityTaxInformation
- func IDNEQ(id int) predicate.EntityTaxInformation
- func IDNotIn(ids ...int) predicate.EntityTaxInformation
- func Not(p predicate.EntityTaxInformation) predicate.EntityTaxInformation
- func Or(predicates ...predicate.EntityTaxInformation) predicate.EntityTaxInformation
- func TaxId(v string) predicate.EntityTaxInformation
- func TaxIdContains(v string) predicate.EntityTaxInformation
- func TaxIdContainsFold(v string) predicate.EntityTaxInformation
- func TaxIdEQ(v string) predicate.EntityTaxInformation
- func TaxIdEqualFold(v string) predicate.EntityTaxInformation
- func TaxIdGT(v string) predicate.EntityTaxInformation
- func TaxIdGTE(v string) predicate.EntityTaxInformation
- func TaxIdHasPrefix(v string) predicate.EntityTaxInformation
- func TaxIdHasSuffix(v string) predicate.EntityTaxInformation
- func TaxIdIn(vs ...string) predicate.EntityTaxInformation
- func TaxIdLT(v string) predicate.EntityTaxInformation
- func TaxIdLTE(v string) predicate.EntityTaxInformation
- func TaxIdNEQ(v string) predicate.EntityTaxInformation
- func TaxIdNotIn(vs ...string) predicate.EntityTaxInformation
- func TypeEQ(v Type) predicate.EntityTaxInformation
- func TypeIn(vs ...Type) predicate.EntityTaxInformation
- func TypeNEQ(v Type) predicate.EntityTaxInformation
- func TypeNotIn(vs ...Type) predicate.EntityTaxInformation
- func TypeValidator(_type Type) error
- func ValidColumn(column string) bool
- type Type
Constants ¶
const ( // Label holds the string label denoting the entitytaxinformation type in the database. Label = "entity_tax_information" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldType holds the string denoting the type field in the database. FieldType = "type" // FieldTaxId holds the string denoting the taxid field in the database. FieldTaxId = "tax_id" // Table holds the table name of the entitytaxinformation in the database. Table = "entity_tax_informations" )
Variables ¶
var Columns = []string{ FieldID, FieldType, FieldTaxId, }
Columns holds all SQL columns for entitytaxinformation fields.
var ForeignKeys = []string{
"entity_tax_specifications",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "entity_tax_informations" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.EntityTaxInformation) predicate.EntityTaxInformation
And groups predicates with the AND operator between them.
func ID ¶
func ID(id int) predicate.EntityTaxInformation
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id int) predicate.EntityTaxInformation
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.EntityTaxInformation
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.EntityTaxInformation
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.EntityTaxInformation
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.EntityTaxInformation
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.EntityTaxInformation
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.EntityTaxInformation
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.EntityTaxInformation
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.EntityTaxInformation) predicate.EntityTaxInformation
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.EntityTaxInformation) predicate.EntityTaxInformation
Or groups predicates with the OR operator between them.
func TaxId ¶
func TaxId(v string) predicate.EntityTaxInformation
TaxId applies equality check predicate on the "taxId" field. It's identical to TaxIdEQ.
func TaxIdContains ¶
func TaxIdContains(v string) predicate.EntityTaxInformation
TaxIdContains applies the Contains predicate on the "taxId" field.
func TaxIdContainsFold ¶
func TaxIdContainsFold(v string) predicate.EntityTaxInformation
TaxIdContainsFold applies the ContainsFold predicate on the "taxId" field.
func TaxIdEQ ¶
func TaxIdEQ(v string) predicate.EntityTaxInformation
TaxIdEQ applies the EQ predicate on the "taxId" field.
func TaxIdEqualFold ¶
func TaxIdEqualFold(v string) predicate.EntityTaxInformation
TaxIdEqualFold applies the EqualFold predicate on the "taxId" field.
func TaxIdGT ¶
func TaxIdGT(v string) predicate.EntityTaxInformation
TaxIdGT applies the GT predicate on the "taxId" field.
func TaxIdGTE ¶
func TaxIdGTE(v string) predicate.EntityTaxInformation
TaxIdGTE applies the GTE predicate on the "taxId" field.
func TaxIdHasPrefix ¶
func TaxIdHasPrefix(v string) predicate.EntityTaxInformation
TaxIdHasPrefix applies the HasPrefix predicate on the "taxId" field.
func TaxIdHasSuffix ¶
func TaxIdHasSuffix(v string) predicate.EntityTaxInformation
TaxIdHasSuffix applies the HasSuffix predicate on the "taxId" field.
func TaxIdIn ¶
func TaxIdIn(vs ...string) predicate.EntityTaxInformation
TaxIdIn applies the In predicate on the "taxId" field.
func TaxIdLT ¶
func TaxIdLT(v string) predicate.EntityTaxInformation
TaxIdLT applies the LT predicate on the "taxId" field.
func TaxIdLTE ¶
func TaxIdLTE(v string) predicate.EntityTaxInformation
TaxIdLTE applies the LTE predicate on the "taxId" field.
func TaxIdNEQ ¶
func TaxIdNEQ(v string) predicate.EntityTaxInformation
TaxIdNEQ applies the NEQ predicate on the "taxId" field.
func TaxIdNotIn ¶
func TaxIdNotIn(vs ...string) predicate.EntityTaxInformation
TaxIdNotIn applies the NotIn predicate on the "taxId" field.
func TypeEQ ¶
func TypeEQ(v Type) predicate.EntityTaxInformation
TypeEQ applies the EQ predicate on the "type" field.
func TypeIn ¶
func TypeIn(vs ...Type) predicate.EntityTaxInformation
TypeIn applies the In predicate on the "type" field.
func TypeNEQ ¶
func TypeNEQ(v Type) predicate.EntityTaxInformation
TypeNEQ applies the NEQ predicate on the "type" field.
func TypeNotIn ¶
func TypeNotIn(vs ...Type) predicate.EntityTaxInformation
TypeNotIn applies the NotIn predicate on the "type" field.
func TypeValidator ¶
TypeValidator is a validator for the "type" field enum values. It is called by the builders before save.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).