クラス MongoClient.UpdateResult
名前空間: Realm 。同期
組み立て: Realm.dll
構文
public class MongoClient.UpdateResult
プロパティ
| このページを編集 ソースを表示MatchedCount
フィルターに一致するドキュメントの数を取得します。
宣言
[BsonElement("matchedCount")]
[Preserve]
public int MatchedCount { get; }
プロパティ値
タイプ | 説明 |
---|---|
整数 | 一致したドキュメントの数。 |
Modifiedカウント
操作によって変更されたドキュメントの数を取得します。
宣言
[BsonElement("modifiedCount")]
[Preserve]
public int ModifiedCount { get; }
プロパティ値
タイプ | 説明 |
---|---|
整数 | 変更されたドキュメントの数。 |
UpsertedId
操作によって挿入が行われた場合、挿入されたドキュメントの_id
を取得します。
宣言
[BsonElement("upsertedId")]
[Preserve]
public object? UpsertedId { get; }
プロパティ値
タイプ | 説明 |
---|---|
オブジェクト | 挿入されたドキュメントの |