-
Notifications
You must be signed in to change notification settings - Fork 90
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 OrWhereIn method #397
Conversation
Codecov ReportAll modified and coverable lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## master #397 +/- ##
=======================================
Coverage 69.36% 69.37%
=======================================
Files 152 152
Lines 10935 10937 +2
=======================================
+ Hits 7585 7587 +2
Misses 2844 2844
Partials 506 506 β View full report in Codecov by Sentry. |
contracts/database/orm/orm.go
Outdated
// OrWhereIn adds an "or where column in" clause to the query. | ||
OrWhereIn(column string, values []any) Query |
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.
Good implementation, just one nitpick: please sort the method by the first letter. π
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.
Sure π
π Description
add OrWhereIn method
β Checks