NoRM UpdateOne 不起作用

发布于 2024-12-27 01:34:08 字数 494 浏览 0 评论 0原文

我在应用程序测试中使用 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文