Předejte instanci UpdateOptions
jako parametr options v UpdateOneAsync(filter, update, options)
, např.:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
UPRAVIT
Chcete-li dokument nahradit, zavolejte ReplaceOneAsync
místo toho:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });