I have a mongoDB where all the documents have this structure:
{
"_id" : ObjectId("522489bdfc346a1464659634"),
"Flash_point" : 105,
"Boiling_point" : 112,
"Melting_point" : 41}
I have no idea how to delete "Flash_point"-element from a document in C#
Afterwards, the document should look like this:
{
"_id" : ObjectId("522489bdfc346a1464659634"),
"Boiling_point" : 112,
"Melting_point" : 41}
Many thanks!