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 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
// 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 conversion
import (
"github.com/facebook/ent/dialect/sql"
"github.com/facebook/ent/entc/integration/migrate/entv1/predicate"
)
// ID filters vertices based on their ID field.
func ID(id int) predicate.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldID), id))
})
}
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func Name(v string) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldName), v))
})
}
// Int8ToString applies equality check predicate on the "int8_to_string" field. It's identical to Int8ToStringEQ.
func Int8ToString(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt8ToString), v))
})
}
// Uint8ToString applies equality check predicate on the "uint8_to_string" field. It's identical to Uint8ToStringEQ.
func Uint8ToString(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint8ToString), v))
})
}
// Int16ToString applies equality check predicate on the "int16_to_string" field. It's identical to Int16ToStringEQ.
func Int16ToString(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt16ToString), v))
})
}
// Uint16ToString applies equality check predicate on the "uint16_to_string" field. It's identical to Uint16ToStringEQ.
func Uint16ToString(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint16ToString), v))
})
}
// Int32ToString applies equality check predicate on the "int32_to_string" field. It's identical to Int32ToStringEQ.
func Int32ToString(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt32ToString), v))
})
}
// Uint32ToString applies equality check predicate on the "uint32_to_string" field. It's identical to Uint32ToStringEQ.
func Uint32ToString(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint32ToString), v))
})
}
// Int64ToString applies equality check predicate on the "int64_to_string" field. It's identical to Int64ToStringEQ.
func Int64ToString(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt64ToString), v))
})
}
// Uint64ToString applies equality check predicate on the "uint64_to_string" field. It's identical to Uint64ToStringEQ.
func Uint64ToString(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint64ToString), v))
})
}
// NameEQ applies the EQ predicate on the "name" field.
func NameEQ(v string) predicate.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.HasSuffix(s.C(FieldName), v))
})
}
// NameIsNil applies the IsNil predicate on the "name" field.
func NameIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldName)))
})
}
// NameNotNil applies the NotNil predicate on the "name" field.
func NameNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldName)))
})
}
// NameEqualFold applies the EqualFold predicate on the "name" field.
func NameEqualFold(v string) predicate.Conversion {
return predicate.Conversion(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.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.ContainsFold(s.C(FieldName), v))
})
}
// Int8ToStringEQ applies the EQ predicate on the "int8_to_string" field.
func Int8ToStringEQ(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringNEQ applies the NEQ predicate on the "int8_to_string" field.
func Int8ToStringNEQ(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringIn applies the In predicate on the "int8_to_string" field.
func Int8ToStringIn(vs ...int8) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt8ToString), v...))
})
}
// Int8ToStringNotIn applies the NotIn predicate on the "int8_to_string" field.
func Int8ToStringNotIn(vs ...int8) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt8ToString), v...))
})
}
// Int8ToStringGT applies the GT predicate on the "int8_to_string" field.
func Int8ToStringGT(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringGTE applies the GTE predicate on the "int8_to_string" field.
func Int8ToStringGTE(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringLT applies the LT predicate on the "int8_to_string" field.
func Int8ToStringLT(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringLTE applies the LTE predicate on the "int8_to_string" field.
func Int8ToStringLTE(v int8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldInt8ToString), v))
})
}
// Int8ToStringIsNil applies the IsNil predicate on the "int8_to_string" field.
func Int8ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldInt8ToString)))
})
}
// Int8ToStringNotNil applies the NotNil predicate on the "int8_to_string" field.
func Int8ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldInt8ToString)))
})
}
// Uint8ToStringEQ applies the EQ predicate on the "uint8_to_string" field.
func Uint8ToStringEQ(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringNEQ applies the NEQ predicate on the "uint8_to_string" field.
func Uint8ToStringNEQ(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringIn applies the In predicate on the "uint8_to_string" field.
func Uint8ToStringIn(vs ...uint8) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint8ToString), v...))
})
}
// Uint8ToStringNotIn applies the NotIn predicate on the "uint8_to_string" field.
func Uint8ToStringNotIn(vs ...uint8) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint8ToString), v...))
})
}
// Uint8ToStringGT applies the GT predicate on the "uint8_to_string" field.
func Uint8ToStringGT(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringGTE applies the GTE predicate on the "uint8_to_string" field.
func Uint8ToStringGTE(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringLT applies the LT predicate on the "uint8_to_string" field.
func Uint8ToStringLT(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringLTE applies the LTE predicate on the "uint8_to_string" field.
func Uint8ToStringLTE(v uint8) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldUint8ToString), v))
})
}
// Uint8ToStringIsNil applies the IsNil predicate on the "uint8_to_string" field.
func Uint8ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldUint8ToString)))
})
}
// Uint8ToStringNotNil applies the NotNil predicate on the "uint8_to_string" field.
func Uint8ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldUint8ToString)))
})
}
// Int16ToStringEQ applies the EQ predicate on the "int16_to_string" field.
func Int16ToStringEQ(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringNEQ applies the NEQ predicate on the "int16_to_string" field.
func Int16ToStringNEQ(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringIn applies the In predicate on the "int16_to_string" field.
func Int16ToStringIn(vs ...int16) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt16ToString), v...))
})
}
// Int16ToStringNotIn applies the NotIn predicate on the "int16_to_string" field.
func Int16ToStringNotIn(vs ...int16) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt16ToString), v...))
})
}
// Int16ToStringGT applies the GT predicate on the "int16_to_string" field.
func Int16ToStringGT(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringGTE applies the GTE predicate on the "int16_to_string" field.
func Int16ToStringGTE(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringLT applies the LT predicate on the "int16_to_string" field.
func Int16ToStringLT(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringLTE applies the LTE predicate on the "int16_to_string" field.
func Int16ToStringLTE(v int16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldInt16ToString), v))
})
}
// Int16ToStringIsNil applies the IsNil predicate on the "int16_to_string" field.
func Int16ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldInt16ToString)))
})
}
// Int16ToStringNotNil applies the NotNil predicate on the "int16_to_string" field.
func Int16ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldInt16ToString)))
})
}
// Uint16ToStringEQ applies the EQ predicate on the "uint16_to_string" field.
func Uint16ToStringEQ(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringNEQ applies the NEQ predicate on the "uint16_to_string" field.
func Uint16ToStringNEQ(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringIn applies the In predicate on the "uint16_to_string" field.
func Uint16ToStringIn(vs ...uint16) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint16ToString), v...))
})
}
// Uint16ToStringNotIn applies the NotIn predicate on the "uint16_to_string" field.
func Uint16ToStringNotIn(vs ...uint16) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint16ToString), v...))
})
}
// Uint16ToStringGT applies the GT predicate on the "uint16_to_string" field.
func Uint16ToStringGT(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringGTE applies the GTE predicate on the "uint16_to_string" field.
func Uint16ToStringGTE(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringLT applies the LT predicate on the "uint16_to_string" field.
func Uint16ToStringLT(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringLTE applies the LTE predicate on the "uint16_to_string" field.
func Uint16ToStringLTE(v uint16) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldUint16ToString), v))
})
}
// Uint16ToStringIsNil applies the IsNil predicate on the "uint16_to_string" field.
func Uint16ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldUint16ToString)))
})
}
// Uint16ToStringNotNil applies the NotNil predicate on the "uint16_to_string" field.
func Uint16ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldUint16ToString)))
})
}
// Int32ToStringEQ applies the EQ predicate on the "int32_to_string" field.
func Int32ToStringEQ(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringNEQ applies the NEQ predicate on the "int32_to_string" field.
func Int32ToStringNEQ(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringIn applies the In predicate on the "int32_to_string" field.
func Int32ToStringIn(vs ...int32) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt32ToString), v...))
})
}
// Int32ToStringNotIn applies the NotIn predicate on the "int32_to_string" field.
func Int32ToStringNotIn(vs ...int32) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt32ToString), v...))
})
}
// Int32ToStringGT applies the GT predicate on the "int32_to_string" field.
func Int32ToStringGT(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringGTE applies the GTE predicate on the "int32_to_string" field.
func Int32ToStringGTE(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringLT applies the LT predicate on the "int32_to_string" field.
func Int32ToStringLT(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringLTE applies the LTE predicate on the "int32_to_string" field.
func Int32ToStringLTE(v int32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldInt32ToString), v))
})
}
// Int32ToStringIsNil applies the IsNil predicate on the "int32_to_string" field.
func Int32ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldInt32ToString)))
})
}
// Int32ToStringNotNil applies the NotNil predicate on the "int32_to_string" field.
func Int32ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldInt32ToString)))
})
}
// Uint32ToStringEQ applies the EQ predicate on the "uint32_to_string" field.
func Uint32ToStringEQ(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringNEQ applies the NEQ predicate on the "uint32_to_string" field.
func Uint32ToStringNEQ(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringIn applies the In predicate on the "uint32_to_string" field.
func Uint32ToStringIn(vs ...uint32) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint32ToString), v...))
})
}
// Uint32ToStringNotIn applies the NotIn predicate on the "uint32_to_string" field.
func Uint32ToStringNotIn(vs ...uint32) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint32ToString), v...))
})
}
// Uint32ToStringGT applies the GT predicate on the "uint32_to_string" field.
func Uint32ToStringGT(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringGTE applies the GTE predicate on the "uint32_to_string" field.
func Uint32ToStringGTE(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringLT applies the LT predicate on the "uint32_to_string" field.
func Uint32ToStringLT(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringLTE applies the LTE predicate on the "uint32_to_string" field.
func Uint32ToStringLTE(v uint32) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldUint32ToString), v))
})
}
// Uint32ToStringIsNil applies the IsNil predicate on the "uint32_to_string" field.
func Uint32ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldUint32ToString)))
})
}
// Uint32ToStringNotNil applies the NotNil predicate on the "uint32_to_string" field.
func Uint32ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldUint32ToString)))
})
}
// Int64ToStringEQ applies the EQ predicate on the "int64_to_string" field.
func Int64ToStringEQ(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringNEQ applies the NEQ predicate on the "int64_to_string" field.
func Int64ToStringNEQ(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringIn applies the In predicate on the "int64_to_string" field.
func Int64ToStringIn(vs ...int64) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt64ToString), v...))
})
}
// Int64ToStringNotIn applies the NotIn predicate on the "int64_to_string" field.
func Int64ToStringNotIn(vs ...int64) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldInt64ToString), v...))
})
}
// Int64ToStringGT applies the GT predicate on the "int64_to_string" field.
func Int64ToStringGT(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringGTE applies the GTE predicate on the "int64_to_string" field.
func Int64ToStringGTE(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringLT applies the LT predicate on the "int64_to_string" field.
func Int64ToStringLT(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringLTE applies the LTE predicate on the "int64_to_string" field.
func Int64ToStringLTE(v int64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldInt64ToString), v))
})
}
// Int64ToStringIsNil applies the IsNil predicate on the "int64_to_string" field.
func Int64ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldInt64ToString)))
})
}
// Int64ToStringNotNil applies the NotNil predicate on the "int64_to_string" field.
func Int64ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldInt64ToString)))
})
}
// Uint64ToStringEQ applies the EQ predicate on the "uint64_to_string" field.
func Uint64ToStringEQ(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringNEQ applies the NEQ predicate on the "uint64_to_string" field.
func Uint64ToStringNEQ(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringIn applies the In predicate on the "uint64_to_string" field.
func Uint64ToStringIn(vs ...uint64) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint64ToString), v...))
})
}
// Uint64ToStringNotIn applies the NotIn predicate on the "uint64_to_string" field.
func Uint64ToStringNotIn(vs ...uint64) predicate.Conversion {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Conversion(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(FieldUint64ToString), v...))
})
}
// Uint64ToStringGT applies the GT predicate on the "uint64_to_string" field.
func Uint64ToStringGT(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GT(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringGTE applies the GTE predicate on the "uint64_to_string" field.
func Uint64ToStringGTE(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.GTE(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringLT applies the LT predicate on the "uint64_to_string" field.
func Uint64ToStringLT(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LT(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringLTE applies the LTE predicate on the "uint64_to_string" field.
func Uint64ToStringLTE(v uint64) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldUint64ToString), v))
})
}
// Uint64ToStringIsNil applies the IsNil predicate on the "uint64_to_string" field.
func Uint64ToStringIsNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.IsNull(s.C(FieldUint64ToString)))
})
}
// Uint64ToStringNotNil applies the NotNil predicate on the "uint64_to_string" field.
func Uint64ToStringNotNil() predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
s.Where(sql.NotNull(s.C(FieldUint64ToString)))
})
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.Conversion) predicate.Conversion {
return predicate.Conversion(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.Conversion) predicate.Conversion {
return predicate.Conversion(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.Conversion) predicate.Conversion {
return predicate.Conversion(func(s *sql.Selector) {
p(s.Not())
})
}
|