MongoDB:@DBRef查询

时间:2012-11-13 13:06:31

标签: mongodb dbref

我有一个为商店用户通知设计的类层次结构:

@Document
public class Notification<T> {
   @Id
   private String id;
   @DBRef
   private T tag;
   ...
}

@Document
public class NotificationA extends Notification<WrappedA> {
}

@Document
public class NotificationB extends Notification<WrappedB> {
}

    ...

这对于返回多态数组很有用,允许我在“tag”字段中存储任何类型的数据。当包装的对象包含@DBRef字段时,问题开始:

@Document
public class WrappedA {
   @Id
   private String id;
   @DBRef
   private JetAnotherClass referenced;
   ...
}

对“tag”字段的查询工作正常:

db.NotificationA.find( {"tag.$id": ObjectId("507b9902...32a")} )

但是我需要查询JetAnotherClass的字段(两个级别的@DBRef字段)。我尝试过点符号和子对象,但它返回null:

点符号:

db.NotificationA.findOne( {"tag.$referenced.$id": ObjectId("508a7701...29f")} )

子对象:

db.NotificationA.findOne( {"tag.$referenced": { "_id": ObjectId("508a7701...29f") }} )

有任何帮助吗? 提前谢谢!

1 个答案:

答案 0 :(得分:7)

由于您看起来只是_id查询,我相信您可以这样做:

db.NotificationA.findOne({"tag.$id": ObjectId("blah")});

然而:

  

但我需要查询JetAnotherClass的字段(两个级别的@DBRef字段)。

DBRefs不是JOIN,它们只是一个自我描述_id,如果您不知道链接集合它将创建一个帮助对象,因此您不必在客户端自己编写代码

您可以在此处找到有关DBRefs的更多信息:http://docs.mongodb.org/manual/applications/database-references/

基本上,您可以从同一文档中查询DBRef中的子字段,即:DBRef.$_id但您不能在服务器端解析该DBRef并在结果字段上进行查询。