我正在CosmosDB中执行以下查询(使用MongoDB的驱动程序)。
db.sendies.find({
'actions':
{
$elemMatch:
{
'done': false,
'date':
{
$gte: ISODate('2018-12-01 00:00:00 000Z')
}
}
}},{
'actions':
{
$elemMatch:
{
'done': false
}
}})
错误。
Error: error: {
"_t" : "OKMongoResponse",
"ok" : 0,
"code" : 2,
"errmsg" : "Projection operator not supported.",
"$err" : "Projection operator not supported."
}
过滤器正常工作,但投影无效。 当我在MongoDB本地执行时,投影也起作用。