我的mongo数据库结构如下:
Country:
{
State:
[
{ stateId: 1, symbol: "abc" },
{ stateId: 2, symbol: "xyz" }
]
}
现在,要检索stateId == 1的文档。
query.addCriteria(Criteria.where(“ country.state.stateId”)。is(1));
mongoTemplate不接受此“ country.state.stateId”(三级嵌套)。
感谢您的帮助。