C# 中更新插入的 Mongo 文档的 ID

发布于 2024-12-10 05:24:20 字数 425 浏览 3 评论 0原文

已经详细记录了如何在 C# 中从插入到 MongoDb 集合中获取返回 Id (示例)。但是我如何获得更新插入的文档呢?有没有一种方法,除了再次查询 Id 之外,还可以使用 Update 返回的 SafeModeResult 来查找更新插入的文档 Id?

My code:
var query = abc;
var update = xyz;
try
{
   db["Collection"].Update(query, update, UpdateFlags.Upsert);
}
catch
{
}

It has been well documented how to get a return Id from an Insert to a MongoDb collection in C# (Example). But how do I get that for an upserted document? Is there a way, short of querying for the Id again, to use the SafeModeResult returned by an Update to find the upserted document Id?

My code:
var query = abc;
var update = xyz;
try
{
   db["Collection"].Update(query, update, UpdateFlags.Upsert);
}
catch
{
}

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

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

发布评论

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

评论(1

丢了幸福的猪 2024-12-17 05:24:20

找到的解决方案:

db["Collection"].FindAndModify(query, SortBy.Ascending(), update, true, true).Response.GetValue(1).AsBsonDocument.GetValue("_id")

返回ObjectId。

Solution found:

db["Collection"].FindAndModify(query, SortBy.Ascending(), update, true, true).Response.GetValue(1).AsBsonDocument.GetValue("_id")

returns the ObjectId.

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