updateOne
để cập nhật các trường tài liệu bằng cách sử dụng toán tử cập nhật. Bạn cần replaceOne
sẽ lấy tài liệu thay thế.
_collection.replaceOne(
trackID,
track,
new UpdateOptions().upsert( true ));
Thêm ở đây
Cập nhật toán tử: https://docs.mongodb.com/manual/reference / operator / update-field /
Cập nhật Một: https://docs.mongodb.com/manual /reference/method/db.collection.updateOne/
Thay thế Một: https://docs.mongodb.com/manual /reference/method/db.collection.replaceOne/