UpdateOptions
. का एक उदाहरण पास करें UpdateOneAsync(filter, update, options)
. में विकल्प पैरामीटर के रूप में , उदा.:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
संपादित करें
दस्तावेज़ को बदलने के लिए, ReplaceOneAsync
. पर कॉल करें इसके बजाय:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });