ServerIn applies the In predicate on the "server" field.
(vs ...string)
| 343 | |
| 344 | // ServerIn applies the In predicate on the "server" field. |
| 345 | func ServerIn(vs ...string) predicate.Node { |
| 346 | return predicate.Node(sql.FieldIn(FieldServer, vs...)) |
| 347 | } |
| 348 | |
| 349 | // ServerNotIn applies the NotIn predicate on the "server" field. |
| 350 | func ServerNotIn(vs ...string) predicate.Node { |