1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by entc, DO NOT EDIT.
package file
import (
"github.com/facebook/ent/dialect/sql"
"github.com/facebook/ent/dialect/sql/sqlgraph"
"github.com/facebook/ent/entc/integration/ent/predicate"
)
// ID filters vertices based on their ID field.
func ID(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldID), id))
})
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldID), id))
})
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldID), id))
})
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...int) predicate.File {
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(ids) == 0 {
s.Where(sql.False())
return
}
v := make([]interface{}, len(ids))
for i := range v {
v[i] = ids[i]
}
s.Where(sql.In(s.C(FieldID), v...))
})
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...int) predicate.File {
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(ids) == 0 {
s.Where(sql.False())
return
}
v := make([]interface{}, len(ids))
for i := range v {
v[i] = ids[i]
}
s.Where(sql.NotIn(s.C(FieldID), v...))
})
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldID), id))
})
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldID), id))
})
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldID), id))
})
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldID), id))
})
}
// Size applies equality check predicate on the "size" field. It's identical to SizeEQ.
func Size(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldSize), v))
})
}
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func Name(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldName), v))
})
}
// User applies equality check predicate on the "user" field. It's identical to UserEQ.
func User(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUser), v))
})
}
// Group applies equality check predicate on the "group" field. It's identical to GroupEQ.
func Group(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldGroup), v))
})
}
// Op applies equality check predicate on the "op" field. It's identical to OpEQ.
func Op(v bool) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldOp), v))
})
}
// SizeEQ applies the EQ predicate on the "size" field.
func SizeEQ(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldSize), v))
})
}
// SizeNEQ applies the NEQ predicate on the "size" field.
func SizeNEQ(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldSize), v))
})
}
// SizeIn applies the In predicate on the "size" field.
func SizeIn(vs ...int) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.In(s.C(FieldSize), v...))
})
}
// SizeNotIn applies the NotIn predicate on the "size" field.
func SizeNotIn(vs ...int) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.NotIn(s.C(FieldSize), v...))
})
}
// SizeGT applies the GT predicate on the "size" field.
func SizeGT(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldSize), v))
})
}
// SizeGTE applies the GTE predicate on the "size" field.
func SizeGTE(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldSize), v))
})
}
// SizeLT applies the LT predicate on the "size" field.
func SizeLT(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldSize), v))
})
}
// SizeLTE applies the LTE predicate on the "size" field.
func SizeLTE(v int) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldSize), v))
})
}
// NameEQ applies the EQ predicate on the "name" field.
func NameEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldName), v))
})
}
// NameNEQ applies the NEQ predicate on the "name" field.
func NameNEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldName), v))
})
}
// NameIn applies the In predicate on the "name" field.
func NameIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.In(s.C(FieldName), v...))
})
}
// NameNotIn applies the NotIn predicate on the "name" field.
func NameNotIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.NotIn(s.C(FieldName), v...))
})
}
// NameGT applies the GT predicate on the "name" field.
func NameGT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldName), v))
})
}
// NameGTE applies the GTE predicate on the "name" field.
func NameGTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldName), v))
})
}
// NameLT applies the LT predicate on the "name" field.
func NameLT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldName), v))
})
}
// NameLTE applies the LTE predicate on the "name" field.
func NameLTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldName), v))
})
}
// NameContains applies the Contains predicate on the "name" field.
func NameContains(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.Contains(s.C(FieldName), v))
})
}
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasPrefix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasPrefix(s.C(FieldName), v))
})
}
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameHasSuffix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasSuffix(s.C(FieldName), v))
})
}
// NameEqualFold applies the EqualFold predicate on the "name" field.
func NameEqualFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EqualFold(s.C(FieldName), v))
})
}
// NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameContainsFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.ContainsFold(s.C(FieldName), v))
})
}
// UserEQ applies the EQ predicate on the "user" field.
func UserEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUser), v))
})
}
// UserNEQ applies the NEQ predicate on the "user" field.
func UserNEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldUser), v))
})
}
// UserIn applies the In predicate on the "user" field.
func UserIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.In(s.C(FieldUser), v...))
})
}
// UserNotIn applies the NotIn predicate on the "user" field.
func UserNotIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.NotIn(s.C(FieldUser), v...))
})
}
// UserGT applies the GT predicate on the "user" field.
func UserGT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldUser), v))
})
}
// UserGTE applies the GTE predicate on the "user" field.
func UserGTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldUser), v))
})
}
// UserLT applies the LT predicate on the "user" field.
func UserLT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldUser), v))
})
}
// UserLTE applies the LTE predicate on the "user" field.
func UserLTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldUser), v))
})
}
// UserContains applies the Contains predicate on the "user" field.
func UserContains(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.Contains(s.C(FieldUser), v))
})
}
// UserHasPrefix applies the HasPrefix predicate on the "user" field.
func UserHasPrefix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasPrefix(s.C(FieldUser), v))
})
}
// UserHasSuffix applies the HasSuffix predicate on the "user" field.
func UserHasSuffix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasSuffix(s.C(FieldUser), v))
})
}
// UserIsNil applies the IsNil predicate on the "user" field.
func UserIsNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldUser)))
})
}
// UserNotNil applies the NotNil predicate on the "user" field.
func UserNotNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldUser)))
})
}
// UserEqualFold applies the EqualFold predicate on the "user" field.
func UserEqualFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EqualFold(s.C(FieldUser), v))
})
}
// UserContainsFold applies the ContainsFold predicate on the "user" field.
func UserContainsFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.ContainsFold(s.C(FieldUser), v))
})
}
// GroupEQ applies the EQ predicate on the "group" field.
func GroupEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldGroup), v))
})
}
// GroupNEQ applies the NEQ predicate on the "group" field.
func GroupNEQ(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldGroup), v))
})
}
// GroupIn applies the In predicate on the "group" field.
func GroupIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.In(s.C(FieldGroup), v...))
})
}
// GroupNotIn applies the NotIn predicate on the "group" field.
func GroupNotIn(vs ...string) predicate.File {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.File(func(s *sql.Selector) {
// if not arguments were provided, append the FALSE constants,
// since we can't apply "IN ()". This will make this predicate falsy.
if len(v) == 0 {
s.Where(sql.False())
return
}
s.Where(sql.NotIn(s.C(FieldGroup), v...))
})
}
// GroupGT applies the GT predicate on the "group" field.
func GroupGT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldGroup), v))
})
}
// GroupGTE applies the GTE predicate on the "group" field.
func GroupGTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldGroup), v))
})
}
// GroupLT applies the LT predicate on the "group" field.
func GroupLT(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldGroup), v))
})
}
// GroupLTE applies the LTE predicate on the "group" field.
func GroupLTE(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldGroup), v))
})
}
// GroupContains applies the Contains predicate on the "group" field.
func GroupContains(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.Contains(s.C(FieldGroup), v))
})
}
// GroupHasPrefix applies the HasPrefix predicate on the "group" field.
func GroupHasPrefix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasPrefix(s.C(FieldGroup), v))
})
}
// GroupHasSuffix applies the HasSuffix predicate on the "group" field.
func GroupHasSuffix(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.HasSuffix(s.C(FieldGroup), v))
})
}
// GroupIsNil applies the IsNil predicate on the "group" field.
func GroupIsNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldGroup)))
})
}
// GroupNotNil applies the NotNil predicate on the "group" field.
func GroupNotNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldGroup)))
})
}
// GroupEqualFold applies the EqualFold predicate on the "group" field.
func GroupEqualFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EqualFold(s.C(FieldGroup), v))
})
}
// GroupContainsFold applies the ContainsFold predicate on the "group" field.
func GroupContainsFold(v string) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.ContainsFold(s.C(FieldGroup), v))
})
}
// OpEQ applies the EQ predicate on the "op" field.
func OpEQ(v bool) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldOp), v))
})
}
// OpNEQ applies the NEQ predicate on the "op" field.
func OpNEQ(v bool) predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldOp), v))
})
}
// OpIsNil applies the IsNil predicate on the "op" field.
func OpIsNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldOp)))
})
}
// OpNotNil applies the NotNil predicate on the "op" field.
func OpNotNil() predicate.File {
return predicate.File(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldOp)))
})
}
// HasOwner applies the HasEdge predicate on the "owner" edge.
func HasOwner() predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(OwnerTable, FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
func HasOwnerWith(preds ...predicate.User) predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(OwnerInverseTable, FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
)
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// HasType applies the HasEdge predicate on the "type" edge.
func HasType() predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(TypeTable, FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, TypeTable, TypeColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasTypeWith applies the HasEdge predicate on the "type" edge with a given conditions (other predicates).
func HasTypeWith(preds ...predicate.FileType) predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(TypeInverseTable, FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, TypeTable, TypeColumn),
)
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// HasField applies the HasEdge predicate on the "field" edge.
func HasField() predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(FieldTable, FieldID),
sqlgraph.Edge(sqlgraph.O2M, false, FieldTable, FieldColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasFieldWith applies the HasEdge predicate on the "field" edge with a given conditions (other predicates).
func HasFieldWith(preds ...predicate.FieldType) predicate.File {
return predicate.File(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(FieldInverseTable, FieldID),
sqlgraph.Edge(sqlgraph.O2M, false, FieldTable, FieldColumn),
)
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.File) predicate.File {
return predicate.File(func(s *sql.Selector) {
s1 := s.Clone().SetP(nil)
for _, p := range predicates {
p(s1)
}
s.Where(s1.P())
})
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.File) predicate.File {
return predicate.File(func(s *sql.Selector) {
s1 := s.Clone().SetP(nil)
for i, p := range predicates {
if i > 0 {
s1.Or()
}
p(s1)
}
s.Where(s1.P())
})
}
// Not applies the not operator on the given predicate.
func Not(p predicate.File) predicate.File {
return predicate.File(func(s *sql.Selector) {
p(s.Not())
})
}
|