23

我在我的项目中使用 MongoDB .Net 驱动程序。我想更新存储在 MongoDB 中的对象的所有属性。在文档中,更新显示如下:

var filter = Builders<BsonDocument>.Filter.Eq("i", 10);
var update = Builders<BsonDocument>.Update.Set("i", 110);

await collection.UpdateOneAsync(filter, update);

但我不想Set为所有属性调用该方法,因为有很多属性并且将来可能会更多。

如何使用 MongoDB .Net 驱动程序更新整个对象?

4

3 回答 3

44

你可以用ReplaceOneAsync代替来做到这一点UpdateOneAsync

您需要一个过滤器来匹配现有文档(带有文档 ID 的过滤器是最简单的)和新对象。

Hamster hamster = ...
var replaceOneResult = await collection.ReplaceOneAsync(
    doc => doc.Id == hamster.Id, 
    hamster);
于 2015-06-17T13:33:15.640 回答
5
var update = new BsonDocument("$set", new BsonDocument(entityType.GetProperties().Where(p => p.Name != "Id").Select(p => new KeyValuePair<string, object>(p.Name, entityType.GetProperty(p.Name).GetValue(task, null)))));
var options = new UpdateOptions();
collection.UpdateOne<MyTask>(item => item.Name == "cheque", update, options);

此代码使用反射将给定对象的所有属性包含
到更新语句中,无需手动添加所有属性,因为您看到 Id 被明确排除在更新语句中以避免异常。

于 2018-02-28T14:32:39.037 回答
0

如果要更新整个 BsonDocument,则存在从 BsonDocument 到 UpdateDefinition 的隐式转换。

https://github.com/mongodb/mongo-csharp-driver/blob/master/src/MongoDB.Driver/UpdateDefinition.cs

var doc = new BsonDocument() { .... }
UpdateDefinition<BsonDocument> update = doc;
于 2020-03-07T12:14:32.823 回答