コード例 #1
0
 public UpdateResult(MongoDB.Driver.UpdateResult mongoUpdateResult)
 {
     acknowledged  = mongoUpdateResult.IsAcknowledged;
     modifiedCount = mongoUpdateResult.ModifiedCount;
     matchedCount  = mongoUpdateResult.MatchedCount;
     upsertedId    = mongoUpdateResult.UpsertedId;
 }
コード例 #2
0
ファイル: UpdateResult.cs プロジェクト: lurienanofab/lnf
 internal UpdateResult(MongoDB.Driver.UpdateResult res)
 {
     _res = res ?? throw new ArgumentException("res");
 }