Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.AuthStateCache) predicate.AuthStateCache
- func ExpiresAt(v int64) predicate.AuthStateCache
- func ExpiresAtEQ(v int64) predicate.AuthStateCache
- func ExpiresAtGT(v int64) predicate.AuthStateCache
- func ExpiresAtGTE(v int64) predicate.AuthStateCache
- func ExpiresAtIn(vs ...int64) predicate.AuthStateCache
- func ExpiresAtLT(v int64) predicate.AuthStateCache
- func ExpiresAtLTE(v int64) predicate.AuthStateCache
- func ExpiresAtNEQ(v int64) predicate.AuthStateCache
- func ExpiresAtNotIn(vs ...int64) predicate.AuthStateCache
- func ID(id string) predicate.AuthStateCache
- func IDEQ(id string) predicate.AuthStateCache
- func IDGT(id string) predicate.AuthStateCache
- func IDGTE(id string) predicate.AuthStateCache
- func IDIn(ids ...string) predicate.AuthStateCache
- func IDLT(id string) predicate.AuthStateCache
- func IDLTE(id string) predicate.AuthStateCache
- func IDNEQ(id string) predicate.AuthStateCache
- func IDNotIn(ids ...string) predicate.AuthStateCache
- func Not(p predicate.AuthStateCache) predicate.AuthStateCache
- func Or(predicates ...predicate.AuthStateCache) predicate.AuthStateCache
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the authstatecache type in the database. Label = "auth_state_cache" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldExpiresAt holds the string denoting the expires_at field in the database. FieldExpiresAt = "expires_at" // Table holds the table name of the authstatecache in the database. Table = "auth_state_caches" )
Variables ¶
var Columns = []string{ FieldID, FieldExpiresAt, }
Columns holds all SQL columns for authstatecache fields.
Functions ¶
func And ¶
func And(predicates ...predicate.AuthStateCache) predicate.AuthStateCache
And groups predicates with the AND operator between them.
func ExpiresAt ¶
func ExpiresAt(v int64) predicate.AuthStateCache
ExpiresAt applies equality check predicate on the "expires_at" field. It's identical to ExpiresAtEQ.
func ExpiresAtEQ ¶
func ExpiresAtEQ(v int64) predicate.AuthStateCache
ExpiresAtEQ applies the EQ predicate on the "expires_at" field.
func ExpiresAtGT ¶
func ExpiresAtGT(v int64) predicate.AuthStateCache
ExpiresAtGT applies the GT predicate on the "expires_at" field.
func ExpiresAtGTE ¶
func ExpiresAtGTE(v int64) predicate.AuthStateCache
ExpiresAtGTE applies the GTE predicate on the "expires_at" field.
func ExpiresAtIn ¶
func ExpiresAtIn(vs ...int64) predicate.AuthStateCache
ExpiresAtIn applies the In predicate on the "expires_at" field.
func ExpiresAtLT ¶
func ExpiresAtLT(v int64) predicate.AuthStateCache
ExpiresAtLT applies the LT predicate on the "expires_at" field.
func ExpiresAtLTE ¶
func ExpiresAtLTE(v int64) predicate.AuthStateCache
ExpiresAtLTE applies the LTE predicate on the "expires_at" field.
func ExpiresAtNEQ ¶
func ExpiresAtNEQ(v int64) predicate.AuthStateCache
ExpiresAtNEQ applies the NEQ predicate on the "expires_at" field.
func ExpiresAtNotIn ¶
func ExpiresAtNotIn(vs ...int64) predicate.AuthStateCache
ExpiresAtNotIn applies the NotIn predicate on the "expires_at" field.
func IDEQ ¶
func IDEQ(id string) predicate.AuthStateCache
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id string) predicate.AuthStateCache
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id string) predicate.AuthStateCache
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...string) predicate.AuthStateCache
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id string) predicate.AuthStateCache
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id string) predicate.AuthStateCache
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id string) predicate.AuthStateCache
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...string) predicate.AuthStateCache
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.AuthStateCache) predicate.AuthStateCache
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.AuthStateCache) predicate.AuthStateCache
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 ¶
This section is empty.