Replies: 4 comments 3 replies
-
This could be related to changes made here: https://issues.hibernatingrhinos.com/issue/RavenDB-17206 Could you send us a full repro maybe so we can investigate this faster? |
Beta Was this translation helpful? Give feedback.
-
Hi Sorry I didn't see that the fix is already included in the RavenDB version that you are using, can you send us a failing test or sample project that reproduce the issue ? |
Beta Was this translation helpful? Give feedback.
-
Hi We have a reproduce for this issue, and will fix it shorty |
Beta Was this translation helpful? Give feedback.
-
PR: #12984 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We have a query in our app that needs to exclude a lot of documents (by ID) from the query. We do this as follows:
query.AndAlso().Not.ContainsAny(x => x.Id, exludedDocuments);
which works great, but if that list gets too large it seems to not work at all.
(and that excludedDocuments list comes from another document, so it's different everytime)
I tried myself by querying in Raven Studio using
not id() in
and a whole lot of Id's, the limit seems to be 124 documents, more than 124 seems to ignore the "not contains" completely. I attached a video of me testing in Raven Studio.2021-10-26.15-24-10.mp4
Are we doing something wrong/inefficient or could this be a bug?
Beta Was this translation helpful? Give feedback.
All reactions