参考资源:
1:mongodb3.2系统性学习——3、update()操作
代码如下:
var mongoString = "mongodb://xxxxxxxxxxx:27017"; var host = new TMongodbHostModel { CollectionName = "ft_test", ConnectionString = mongoString, DatabaseName = "system_db" }; var person = new Person { Id = ObjectId.GenerateNewId(), Name = "jamesbing", Address = new List<AddressItem> { new AddressItem {Add = "英国", Id = ObjectId.GenerateNewId(), Age = 12}, new AddressItem {Add = "美国", Id = ObjectId.GenerateNewId(), Age = 19} } }; var collection = TMongodbHelper.GetMongoCollection<Person>(host.ConnectionString, host.DatabaseName, host.CollectionName); //Update ChildDocument var address = "Address.$.{0}"; var result = collection.FindAndModify( Query.And(new List<IMongoQuery> { Query.EQ("_id", new ObjectId("577b344a87aebb23c0fc767a")), Query.EQ("Address._id", new ObjectId("577b344a87aebb23c0fc767b")), }), MongoDB.Driver.Builders.Update.Set(string.Format(address, "Age"), BsonValue.Create(33)));
时间: 2024-09-30 18:09:49