Skicka en instans av UpdateOptions
som optionsparameter i UpdateOneAsync(filter, update, options)
, t.ex.:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
REDIGERA
För att ersätta dokumentet, anrop ReplaceOneAsync
istället:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });