RavenDb 中 WHERE 子句空值的问题
我有以下语句(使用 RavenDb):
session.Query<Container>().Where(c=>c.ParentId == null).Count();
当我运行上面的语句时,计数始终为 0,但如果我这样做:
session.Query<Container>().ToList().Where(c=>c.ParentId == null).Count();
它会返回正确的数字。
有人知道如何实现这一目标吗? RavenDb 在查询中对空值的处理是否不同?
-- 更新 --
我在 localhost:8080 而不是之前(在远程主机上的 IIS 部署中)测试了上述语句,并且它有效。也许是我的IIS配置问题?
I have the following statement (using RavenDb):
session.Query<Container>().Where(c=>c.ParentId == null).Count();
When I run the above, the count is always 0, but if I do this instead:
session.Query<Container>().ToList().Where(c=>c.ParentId == null).Count();
It returns the correct number.
Anyone have the clue on how to achieve this? Is RavenDb got a different handling of null value in it's query?
-- UPDATE --
I tested the above statements in localhost:8080 rather than before (which is in IIS deployment, on remote host) and it works. Maybe it is my IIS configuration problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是对的,RavenDB 以不同的方式处理 null(因为它在底层使用 Lucene)。
我建议将此问题发布到邮件列表中,以便可以修复它。请参阅 http://groups.google.com/group/ravendb。
You're right RavenDB handles null differently (because it uses Lucene under the hood).
I'd recommend posting this on the mailing list, so that it can be fixed. See http://groups.google.com/group/ravendb.