RavenDb 中 WHERE 子句空值的问题

发布于 2024-10-03 04:10:44 字数 431 浏览 4 评论 0原文

我有以下语句(使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟的代价 2024-10-10 04:10:44

你是对的,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文