类 MongoClient.UpdateResult
命名空间: Realm 。 Sync
程序集:Realm.dll
语法
public class MongoClient.UpdateResult
属性
| 编辑本页 查看源代码matchedCount
获取与筛选器匹配的文档数。
声明
[BsonElement("matchedCount")]
[Preserve]
public int MatchedCount { get; }
属性值
类型 | 说明 |
---|---|
int | 匹配文档的数量。 |
modifiedCount
获取此操作修改的文档数。
声明
[BsonElement("modifiedCount")]
[Preserve]
public int ModifiedCount { get; }
属性值
类型 | 说明 |
---|---|
int | 已修改文档的数量。 |
UpsertedId
如果操作导致插入,则获取插入文档的_id
。
声明
[BsonElement("upsertedId")]
[Preserve]
public object? UpsertedId { get; }
属性值
类型 | 说明 |
---|---|
对象 | 所插入文档的 |