标签: java spring-data-mongodb
我在按引用字段排序时遇到问题。
有我的收藏集
集合A
class A{ @Id private String id; @DBRef private B b; // rest of the class code.. }
集合B
Class B{ @Id private String id; private String type; }
我要请求我的收藏夹A并按收藏夹B中的类型对结果进行排序。