I have a cycle. It updated items.
var update = Builders<Profile>.Update.Set(p => p.MailLists, p2l.ToArray());
var query = Builders<Profile>.Filter.Eq(p => p.ID, new ObjectId(profileId));
dbCollection.UpdateOneAsync(query, update).Wait();
For 10K items I have not updated 1-4. But I don`t get any error. If I done an update two times in a row, then it will work. What could it be? MongoDB.Driver version="2.0.1"