This repository was archived by the owner on Jul 28, 2025. It is now read-only.
-
If I have a column, let's say var ids []string // List of IDs to find
entries, err := database.SomeEntry.FindMany(
db.SomeEntry.ID.In(ids),
).Exec(context.Background()) Here are my issues:
Questions:
entries, err := database.SomeEntry.FindMany(
db.SomeEntry.ID.HasSome(ids), // Is this even the same? What does it all mean :'(
).Exec(context.Background()) |
Beta Was this translation helpful? Give feedback.
Answered by
steebchen
Oct 25, 2021
Replies: 2 comments 2 replies
-
This seems like a bug to me. Can you please share your schema? |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
liamross
-
This is a bug, see #643 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This seems like a bug to me. Can you please share your schema?