原始数据看起来像这样
___1___
27 >= 20
___2___
9 20
我做了这个
{
"_id" : ObjectId("57b532aefc19a526b4cf7118"),
"_t" : [
"Product",
"ShoppingProduct"
],
"name" : "nike jug",
"createdByUser" : "",
"updatedAt" : ISODate("2016-08-18T03:59:42.012Z"),
"url" : "https://localhost:44305/v1/product/1",
"description" : "a jug from nike",
"schema" : "ShoppingProduct",
"sku" : "nikejug001",
"price" : "15",
"weight" : "100",
"brand" : null,
"manufacturerId" : ObjectId("000000000000000000000000"),
"entityId" : 1,
"visibility" : 4,
"status" : 1,
"taxClassId" : 2,
"shortDescription" : "nike jug is good"
}
我希望返回数据是这个
var result = _col.Find("{}").Project("{entityId:1}").ToList();
但我得到的是:
{
"_id" : ObjectId("57b532aefc19a526b4cf7118"),
"entityId" : 1
}
如何用C#驱动程序实现{
"name": "_id",
"value": "57b532aefc19a526b4cf7118"
},
{
"name": "entityId",
"value": 1
}
之类的东西?
答案 0 :(得分:-1)
这是正常行为。在官方文档中查找Return the Specified Fields and the _id Field Only vs Return Specified Fields Only。
var empty = Builders<BsonDocument>.Filter.Empty;
var docs = _col.Find(empty).Project("{_id:0, entityId:1}").ToList();
foreach (var doc in docs)
{
if (doc.AsBsonDocument.ElementCount != 1)
throw new Exception("Should have only entityId fields");
}
docs = _col.Find(empty).Project("{entityId:1}").ToList();
foreach (var doc in docs)
{
if (doc.AsBsonDocument.ElementCount != 2)
throw new Exception("Should have _id and entityId fields");
}