sqlboiler/templates/singleton/boil_helpers.tpl

17 lines
467 B
Smarty
Raw Normal View History

// M type is for providing where filters to Where helpers.
type M map[string]interface{}
2016-08-01 07:10:10 +02:00
// NewQueryG initializes a new Query using the passed in QueryMods
func NewQueryG(mods ...qm.QueryMod) *boil.Query {
return NewQuery(boil.GetDB(), mods...)
}
2016-08-01 07:10:10 +02:00
// NewQuery initializes a new Query using the passed in QueryMods
func NewQuery(exec boil.Executor, mods ...qm.QueryMod) *boil.Query {
q := &boil.Query{}
boil.SetExecutor(q, exec)
qm.Apply(q, mods...)
return q
}