我有以下 mongodb json。我想使用文档 _id:id1 将文档中 product_id:2 的价格从 4 更新为 5 有人可以指导我如何在 mongodb 或使用 c# 中执行此操作
{
"_id": "id1",
"products": [
{
"product_id": "pr1",
"price":1,
"qty":5
},
{
"product_id": "pr2",
"price":4,
"qty":10
},
{
"product_id": "pr3",
"price":8,
"qty":9
}
]
}