Lewati instance UpdateOptions
sebagai parameter opsi di UpdateOneAsync(filter, update, options)
, misalnya:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
EDIT
Untuk mengganti dokumen, panggil ReplaceOneAsync
sebagai gantinya:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });