我在制作morphia查询时遇到了麻烦。 我有这样的架构:
{ authorId:12345,
comments:[
{ userId:34567,
name:"joe" },
{ userId:98765,
name:"sam" }
]
}
我希望找到所有使用morphia的记录,其中searchId等于authorId或userId。
我尝试了一系列的事情,但我没有得到它。 E.g。
Query<Record> query = datastore.find(Record.class);
query.or(
query.criteria(authorId).equal(searchId),
query.criteria(comments).hasAnyOf(Collections.singletonList(searchId))
);
我也尝试过使用hasThisElement,但这也不起作用。
我该怎么做?
答案 0 :(得分:3)
由于comments
是嵌入字段,因此请使用 dot notation 查询嵌入文档的字段。 mongo shell查询
db.records.find(
{
"$or": [
{ "authorId": searchId },
{ "comments.userId": searchId }
]
}
)
是你需要的。 Morphia等价物将是
Datastore ds = ...
Query<Record> q = ds.createQuery(Record.class);
q.or(
q.criteria("authorId").equal(searchId),
q.criteria("comments.userId").equal(searchId)
);
//list
List<Record> entities = q.asList();