我有一个 mongoDB,其中所有文档都具有以下结构:
{
"_id" : ObjectId("522489bdfc346a1464659634"),
"Flash_point" : 105,
"Boiling_point" : 112,
"Melting_point" : 41}
我不知道如何从 C# 文档中删除“Flash_point”元素
之后,文档应如下所示:
{
"_id" : ObjectId("522489bdfc346a1464659634"),
"Boiling_point" : 112,
"Melting_point" : 41}
非常感谢!