标签: mongodb spring-data dbref
是否有可能以某种方式在@DBRef上搜索字符串字段。 我有这个@Document:
public class DocumentFileVersion { @TextIndexed @DBRef private OtherObject otherObject
我将在otherObject的String字段中搜索。有没有可能这样做?
答案 0 :(得分:1)
DBRef旨在仅通过id引用进行查询。
id
所以这是不可能的。您应该重新考虑您的架构结构。