You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ravendb
How would one build a query which is the negation
of .WhereIn(fieldName, myBlackList). I want all documents for which
the property fieldName does not have any of the values in the
blacklist.
There is no .WhereNotIn() extentionmethod
I could craft a lucene query using .Where(), but the documentation
says it is obsoleted, and to use .Search() instead. However I cannot
find any doumentation on the .Search() extension method.
--
Thor Arne Johansen
Oppad AS
Itamar Syn-Hershko
unread,
Jul 4, 2012, 7:46:04 PM7/4/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rav...@googlegroups.com
.Where("Field:*")
.AndAlso()
.Not
.WhereIn("Topics", topicId);
You might need to Open/CloseSubclause before and after WhereIn