Chuyển một bản sao của UpdateOptions
làm tham số tùy chọn trong UpdateOneAsync(filter, update, options)
, ví dụ:
collection.UpdateOneAsync(p => p.Id == user.Id,
Builders<User>.Update.Set(p => p.Name, "John"),
new UpdateOptions { IsUpsert = true });
CHỈNH SỬA
Để thay thế tài liệu, hãy gọi ReplaceOneAsync
thay vào đó:
collection.ReplaceOneAsync(p => p.Id == user.Id,
user,
new ReplaceOptions { IsUpsert = true });