Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在使用官方 MongoDB .NET 驱动程序保存文档时获取对文档的更改。我只是在寻找增量,以便我可以审核更改。谢谢!
服务器不向客户端提供任何增量,因此任何此类事情都必须在客户端完成。C# 驱动程序也没有任何此类功能。
在开始更改之前,您必须保留原始文档的副本,然后自己进行增量。
您还可以考虑使用 FindAndModify,它可以返回原始文档,从而使您不必保留文档的原始副本。