在ravendb工作室,我可以做到:
property: [[NULL_VALUE]]
如何使用IDocumentQuery
进行相同操作?
以下尝试不起作用。
documentSession
.Advanced
.DocumentQuery<Doc, Index>()
.WhereIn("property", new[] {"[[NULL_VALUE]]", "some value"})
.ToList();
答案 0 :(得分:3)
要查询[[NULL_VALUE]]
或[[EMPTY_VALUE]]
:
documentSession
.Advanced
.DocumentQuery<Doc, Index>()
.WhereIn("property", new string[] {null, ""})
.ToList();