使用 MongoDB C# 驱动程序,以下代码{ }
在json
变量中给出了我。它似乎忽略了其序列化中的空值。
var document = new BsonDocument{{"x", null}};
var json = document.ToJson();
但是我想json
成为{ "x": null }
。我可以为其设置一些选项来序列化空值吗?
使用 MongoDB C# 驱动程序,以下代码{ }
在json
变量中给出了我。它似乎忽略了其序列化中的空值。
var document = new BsonDocument{{"x", null}};
var json = document.ToJson();
但是我想json
成为{ "x": null }
。我可以为其设置一些选项来序列化空值吗?