我的Json字符串为
string myjson = "[
{
"col1": "1",
"col2": "2",
"col3": "3"
},
{
"col1": "4",
"col2": "5",
"col3": "6"
},
{
"col1": "7",
"col2": "8",
"col3": "9"
}]";
问题是:当我创建bson文档时,它正在显示
无法将BsonArray转换为BsonDocument
这就是我创建BsonDocument的方式:
BsonDocument doc = BsonSerializer.Deserialize<BsonDocument>(myjson);
我该怎么办?
答案 0 :(得分:3)
BsonDocument doc = new BsonDocument();
BsonArray array = BsonSerializer.Deserialize<BsonArray>(myjson);
doc.Add(array);
我没有尝试过,但它应该有用。
修改:
string myjson1 = "{ 'col1': '1', 'col2': '2', 'col3': '3'}";
string myjson2 = "{ 'col1': '4', 'col2': '5', 'col3': '6'}";
string myjson3 = "{'col1': '7', 'col2': '8', 'col3': '9'}";
BsonArray arr = new BsonArray();
arr.Add(BsonSerializer.Deserialize<BsonDocument>(myjson1));
arr.Add(BsonSerializer.Deserialize<BsonDocument>(myjson2));
arr.Add(BsonSerializer.Deserialize<BsonDocument>(myjson3));
或者只是在文档中有一个values
元素,如下所示:
string myjson = "[ { 'col1': '1', 'col2': '2', 'col3': '3'},{ 'col1': '4', 'col2': '5', 'col3': '6'},{'col1': '7', 'col2': '8', 'col3': '9'}]";
var doc = new BsonDocument {
{ "values", BsonSerializer.Deserialize<BsonArray>(myjson) }
};
我能做的最好的就是这个。
答案 1 :(得分:0)
您可以尝试将BsonArray转换为BsonValue数组,然后遍历该数组:
var a = BsonSerializer.Deserialize<BsonArray>(yourjsontext).ToArray();
for (int i = 0; i < a.Length; i++) {
var document = a[i].ToBsonDocument();
// Do whatever necessary
}
答案 2 :(得分:0)
或更干净的方式:
var arrayDocs = BsonSerializer.Deserialize<BsonArray>(myJsonArrayString);
var documents = arrayDocs.Select(val => val.AsBsonDocument);
这将为您提供IEnumerable<BsonDocument>