DocumentDb不支持DISTINCT
声明。我在DocumentDB中有以下结构的文档(数千个文档):
{
"type" : "type1",
"data" : {
...
}
},{
"type" : "type2",
"data" : {
...
}
},{
"type" : "type2",
"data" : {
...
}
},{
"type" : "type2",
"data" : {
...
}
}
如何查询集合并获得以下结果:
{
"type" : "type1"
},{
"type" : "type2"
}