MongoClient.UpdateResult 클래스
UpdateOneAsync(객체?, 객체, bool) 또는 UpdateManyAsync(객체?, 객체, bool) 작업의 결과입니다.
네임스페이스: Realms.동기화
어셈블리: Realm.exe
구문
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; }
속성 값
유형 | 설명 |
---|---|
객체 | 삽입된 문서 의 |