InValues adds the `IN` predicate for slice of driver.Value.
(col string, args ...driver.Value)
| 1077 | |
| 1078 | // InValues adds the `IN` predicate for slice of driver.Value. |
| 1079 | func InValues(col string, args ...driver.Value) *Predicate { |
| 1080 | return P().InValues(col, args...) |
| 1081 | } |
| 1082 | |
| 1083 | // InInts adds the `IN` predicate for ints. |
| 1084 | func (p *Predicate) InInts(col string, args ...int) *Predicate { |
searching dependent graphs…