SlaveKeyIn applies the In predicate on the "slave_key" field.
(vs ...string)
| 418 | |
| 419 | // SlaveKeyIn applies the In predicate on the "slave_key" field. |
| 420 | func SlaveKeyIn(vs ...string) predicate.Node { |
| 421 | return predicate.Node(sql.FieldIn(FieldSlaveKey, vs...)) |
| 422 | } |
| 423 | |
| 424 | // SlaveKeyNotIn applies the NotIn predicate on the "slave_key" field. |
| 425 | func SlaveKeyNotIn(vs ...string) predicate.Node { |