MongoDB:从 .NET 调用时查询字符串返回不同的结果

发布于 2024-11-28 17:56:21 字数 410 浏览 0 评论 0原文

我正在尝试手动构造查询字符串 - 但是在调用时 我的 C# 应用程序中的 Find() 不返回任何结果。打电话时 通过 shell 或 MongoVue 它确实返回预期结果。

这是 .NET 驱动程序的内部限制吗?驱动程序是否改造 在传递给 Mongo 之前以某种方式字符串?

这是查询字符串:

{ 
   "Severity" : 2, 
   "Environment" : { "$elemMatch" : { 
       "Name" : "MachineName", "Value" : "XYZ" } }, 
   "Environment" : { "$elemMatch" : { 
      "Name" : "ApplicationName", "Value" : "ABC" } } 
}

I'm trying to construct a query string manually - however when calling
Find() in my C# app it does not return any results. When calling
through shell or MongoVue it does return expected results.

Is this internal limitation of the .NET driver? Does driver transform the
string in some way before passing to Mongo?

Here is the query string:

{ 
   "Severity" : 2, 
   "Environment" : { "$elemMatch" : { 
       "Name" : "MachineName", "Value" : "XYZ" } }, 
   "Environment" : { "$elemMatch" : { 
      "Name" : "ApplicationName", "Value" : "ABC" } } 
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绿光 2024-12-05 17:56:21

您已经加倍了“环境”。您可能无法将它们放在一起。但是,您可以$或< /a> 这些以获得预期的行为。

You've doubled-up "Environment". You probably can't and these together. However, you may able to $or these to get the expected behaviour.

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