init: create project
This commit is contained in:
796
server/ent/jdmodel/where.go
Normal file
796
server/ent/jdmodel/where.go
Normal file
@ -0,0 +1,796 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
|
||||
package jdmodel
|
||||
|
||||
import (
|
||||
"github.com/facebook/ent/dialect/sql"
|
||||
"github.com/kallydev/privacy/ent/predicate"
|
||||
)
|
||||
|
||||
// ID filters vertices based on their identifier.
|
||||
func ID(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldID), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldID), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
||||
func Name(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Nickname applies equality check predicate on the "nickname" field. It's identical to NicknameEQ.
|
||||
func Nickname(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.
|
||||
func Password(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Email applies equality check predicate on the "email" field. It's identical to EmailEQ.
|
||||
func Email(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumber applies equality check predicate on the "id_number" field. It's identical to IDNumberEQ.
|
||||
func IDNumber(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumber applies equality check predicate on the "phone_number" field. It's identical to PhoneNumberEQ.
|
||||
func PhoneNumber(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameEQ applies the EQ predicate on the "name" field.
|
||||
func NameEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameNEQ applies the NEQ predicate on the "name" field.
|
||||
func NameNEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameIn applies the In predicate on the "name" field.
|
||||
func NameIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldName), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// NameNotIn applies the NotIn predicate on the "name" field.
|
||||
func NameNotIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldName), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// NameGT applies the GT predicate on the "name" field.
|
||||
func NameGT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameGTE applies the GTE predicate on the "name" field.
|
||||
func NameGTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameLT applies the LT predicate on the "name" field.
|
||||
func NameLT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameLTE applies the LTE predicate on the "name" field.
|
||||
func NameLTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameContains applies the Contains predicate on the "name" field.
|
||||
func NameContains(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
||||
func NameHasPrefix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
||||
func NameHasSuffix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
||||
func NameEqualFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
||||
func NameContainsFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldName), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameEQ applies the EQ predicate on the "nickname" field.
|
||||
func NicknameEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameNEQ applies the NEQ predicate on the "nickname" field.
|
||||
func NicknameNEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameIn applies the In predicate on the "nickname" field.
|
||||
func NicknameIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldNickname), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameNotIn applies the NotIn predicate on the "nickname" field.
|
||||
func NicknameNotIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldNickname), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameGT applies the GT predicate on the "nickname" field.
|
||||
func NicknameGT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameGTE applies the GTE predicate on the "nickname" field.
|
||||
func NicknameGTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameLT applies the LT predicate on the "nickname" field.
|
||||
func NicknameLT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameLTE applies the LTE predicate on the "nickname" field.
|
||||
func NicknameLTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameContains applies the Contains predicate on the "nickname" field.
|
||||
func NicknameContains(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameHasPrefix applies the HasPrefix predicate on the "nickname" field.
|
||||
func NicknameHasPrefix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameHasSuffix applies the HasSuffix predicate on the "nickname" field.
|
||||
func NicknameHasSuffix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameEqualFold applies the EqualFold predicate on the "nickname" field.
|
||||
func NicknameEqualFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// NicknameContainsFold applies the ContainsFold predicate on the "nickname" field.
|
||||
func NicknameContainsFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldNickname), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordEQ applies the EQ predicate on the "password" field.
|
||||
func PasswordEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordNEQ applies the NEQ predicate on the "password" field.
|
||||
func PasswordNEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordIn applies the In predicate on the "password" field.
|
||||
func PasswordIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldPassword), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordNotIn applies the NotIn predicate on the "password" field.
|
||||
func PasswordNotIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldPassword), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordGT applies the GT predicate on the "password" field.
|
||||
func PasswordGT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordGTE applies the GTE predicate on the "password" field.
|
||||
func PasswordGTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordLT applies the LT predicate on the "password" field.
|
||||
func PasswordLT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordLTE applies the LTE predicate on the "password" field.
|
||||
func PasswordLTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordContains applies the Contains predicate on the "password" field.
|
||||
func PasswordContains(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordHasPrefix applies the HasPrefix predicate on the "password" field.
|
||||
func PasswordHasPrefix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordHasSuffix applies the HasSuffix predicate on the "password" field.
|
||||
func PasswordHasSuffix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordEqualFold applies the EqualFold predicate on the "password" field.
|
||||
func PasswordEqualFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordContainsFold applies the ContainsFold predicate on the "password" field.
|
||||
func PasswordContainsFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailEQ applies the EQ predicate on the "email" field.
|
||||
func EmailEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailNEQ applies the NEQ predicate on the "email" field.
|
||||
func EmailNEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailIn applies the In predicate on the "email" field.
|
||||
func EmailIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldEmail), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailNotIn applies the NotIn predicate on the "email" field.
|
||||
func EmailNotIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldEmail), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailGT applies the GT predicate on the "email" field.
|
||||
func EmailGT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailGTE applies the GTE predicate on the "email" field.
|
||||
func EmailGTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailLT applies the LT predicate on the "email" field.
|
||||
func EmailLT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailLTE applies the LTE predicate on the "email" field.
|
||||
func EmailLTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailContains applies the Contains predicate on the "email" field.
|
||||
func EmailContains(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailHasPrefix applies the HasPrefix predicate on the "email" field.
|
||||
func EmailHasPrefix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailHasSuffix applies the HasSuffix predicate on the "email" field.
|
||||
func EmailHasSuffix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailEqualFold applies the EqualFold predicate on the "email" field.
|
||||
func EmailEqualFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// EmailContainsFold applies the ContainsFold predicate on the "email" field.
|
||||
func EmailContainsFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldEmail), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberEQ applies the EQ predicate on the "id_number" field.
|
||||
func IDNumberEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberNEQ applies the NEQ predicate on the "id_number" field.
|
||||
func IDNumberNEQ(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberIn applies the In predicate on the "id_number" field.
|
||||
func IDNumberIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldIDNumber), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberNotIn applies the NotIn predicate on the "id_number" field.
|
||||
func IDNumberNotIn(vs ...string) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldIDNumber), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberGT applies the GT predicate on the "id_number" field.
|
||||
func IDNumberGT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberGTE applies the GTE predicate on the "id_number" field.
|
||||
func IDNumberGTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberLT applies the LT predicate on the "id_number" field.
|
||||
func IDNumberLT(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberLTE applies the LTE predicate on the "id_number" field.
|
||||
func IDNumberLTE(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberContains applies the Contains predicate on the "id_number" field.
|
||||
func IDNumberContains(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberHasPrefix applies the HasPrefix predicate on the "id_number" field.
|
||||
func IDNumberHasPrefix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberHasSuffix applies the HasSuffix predicate on the "id_number" field.
|
||||
func IDNumberHasSuffix(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberEqualFold applies the EqualFold predicate on the "id_number" field.
|
||||
func IDNumberEqualFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNumberContainsFold applies the ContainsFold predicate on the "id_number" field.
|
||||
func IDNumberContainsFold(v string) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldIDNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberEQ applies the EQ predicate on the "phone_number" field.
|
||||
func PhoneNumberEQ(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberNEQ applies the NEQ predicate on the "phone_number" field.
|
||||
func PhoneNumberNEQ(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberIn applies the In predicate on the "phone_number" field.
|
||||
func PhoneNumberIn(vs ...int64) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldPhoneNumber), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberNotIn applies the NotIn predicate on the "phone_number" field.
|
||||
func PhoneNumberNotIn(vs ...int64) predicate.JDModel {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldPhoneNumber), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberGT applies the GT predicate on the "phone_number" field.
|
||||
func PhoneNumberGT(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberGTE applies the GTE predicate on the "phone_number" field.
|
||||
func PhoneNumberGTE(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberLT applies the LT predicate on the "phone_number" field.
|
||||
func PhoneNumberLT(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PhoneNumberLTE applies the LTE predicate on the "phone_number" field.
|
||||
func PhoneNumberLTE(v int64) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldPhoneNumber), v))
|
||||
})
|
||||
}
|
||||
|
||||
// And groups list of predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.JDModel) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for _, p := range predicates {
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
}
|
||||
|
||||
// Or groups list of predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.JDModel) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for i, p := range predicates {
|
||||
if i > 0 {
|
||||
s1.Or()
|
||||
}
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.JDModel) predicate.JDModel {
|
||||
return predicate.JDModel(func(s *sql.Selector) {
|
||||
p(s.Not())
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user