Przekaż instancję UpdateOptions
jako parametr options w UpdateOneAsync(filter, update, options)
, np.:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
EDYTUJ
Aby zastąpić dokument, zadzwoń do ReplaceOneAsync
zamiast tego:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });