-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add OrWhereNotIn and WhereNotIn methods #399
Conversation
Codecov ReportAll modified and coverable lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## master #399 +/- ##
==========================================
+ Coverage 69.37% 69.38% +0.01%
==========================================
Files 152 152
Lines 10937 10941 +4
==========================================
+ Hits 7587 7591 +4
Misses 2844 2844
Partials 506 506 β View full report in Codecov by Sentry. |
s.Nil(query.Create(&user2)) | ||
s.True(user2.ID > 0) | ||
|
||
var users []User |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What should I do in this line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'd better create user2
, then judge users
contains user2
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great π
π Description
Add OrWhereNotIn and WhereNotIn methods
β Checks