NoRM UpdateOne 不起作用
我在应用程序测试中使用 NoRM + MongoDB。我找到了 Mongo Session http://normproject.org/samples 的源代码,其中方法更新包装了以下内容:
using(var db = Mongo.Create(_connectionString))
{
db.GetCollection<T>().UpdateOne(item, item);
}
但是,当我使用此方法发送要更新的对象时,我的对象没有保存,但如果我调用 Save 而不是 UpdateOne,我的对象会保存,该怎么办?
我的对象: https://gist.github.com/1616565
有什么问题吗?
I'm using NoRM + MongoDB in an application test. I found the source code of the Mongo Session http://normproject.org/samples where the method update wrapp this:
using(var db = Mongo.Create(_connectionString))
{
db.GetCollection<T>().UpdateOne(item, item);
}
But when I send object to update using this method my object no save, but what if I call Save instead of UpdateOne my object is save.
My objects: https://gist.github.com/1616565
What's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这有帮助:
http://groups.google.com/group/norm-mongodb/browse_thread/thread/8ba8b462b6fe16a5/a4bfaecef4b1cbfc?lnk=gst&q=Update#a4bfaecef4b1cbfc
Hopefully this helps:
http://groups.google.com/group/norm-mongodb/browse_thread/thread/8ba8b462b6fe16a5/a4bfaecef4b1cbfc?lnk=gst&q=Update#a4bfaecef4b1cbfc
Anup
我建议使用官方 C# 驱动程序,您可以在以下位置找到该驱动程序:
http:// www.mongodb.org/display/DOCS/CSharp+Language+Center
I would recommend using the official C# driver, which you can find at:
http://www.mongodb.org/display/DOCS/CSharp+Language+Center