如何获得“真实”的体验?运行 Fluent-mongo 时的 mongo 查询
运行我的应用程序时,我必须写入屏幕使用的原始查询。
是否有任何方法/扩展方法可用,可以从中获取:
IQueryable alldata = hr.GetCollection"EventsReceiver").AsQueryable().Where(q => q.UserId == "123");
类似于:
db.EventsReceiver.find({ "userid" : "123" });
When running my application I have to write to screen raw query used.
Is any method/extension method available, to get from this:
IQueryable alldata = hr.GetCollection"EventsReceiver").AsQueryable().Where(q => q.UserId == "123");
something similar to:
db.EventsReceiver.find({ "userid" : "123" });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 FluentMongo v1.2.0.0 开始,没有公开的方式来公开查询(太悲伤了)。这是一个肮脏的扩展方法来实现它。
但由于这是使用反射来获取非公共成员,因此不要指望它在将来一定会起作用。
From FluentMongo v1.2.0.0, there's no public way to expose the query (so sad). Here's a dirty extension method to get at it.
BUT since this is using reflection to get at non-public members don't expect that it will necessarily work in the future.
对于任何有相同问题的人,我将在 github 上重新发布克雷格的答案:
这应该给您返回用于生成查询的对象。
For anyone having same question I'll repost here Craig's answer on github:
this should give you back the object used to generate the query.