MongoDB:从 .NET 调用时查询字符串返回不同的结果
我正在尝试手动构造查询字符串 - 但是在调用时 我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已经加倍了
“环境”
。您可能无法将它们和
放在一起。但是,您可以$或
< /a> 这些以获得预期的行为。You've doubled-up
"Environment"
. You probably can'tand
these together. However, you may able to$or
these to get the expected behaviour.