SlaveKeyNotIn applies the NotIn predicate on the "slave_key" field.
(vs ...string)
| 423 | |
| 424 | // SlaveKeyNotIn applies the NotIn predicate on the "slave_key" field. |
| 425 | func SlaveKeyNotIn(vs ...string) predicate.Node { |
| 426 | return predicate.Node(sql.FieldNotIn(FieldSlaveKey, vs...)) |
| 427 | } |
| 428 | |
| 429 | // SlaveKeyGT applies the GT predicate on the "slave_key" field. |
| 430 | func SlaveKeyGT(v string) predicate.Node { |