public UpdateResult(MongoDB.Driver.UpdateResult mongoUpdateResult) { acknowledged = mongoUpdateResult.IsAcknowledged; modifiedCount = mongoUpdateResult.ModifiedCount; matchedCount = mongoUpdateResult.MatchedCount; upsertedId = mongoUpdateResult.UpsertedId; }
internal UpdateResult(MongoDB.Driver.UpdateResult res) { _res = res ?? throw new ArgumentException("res"); }