使用PlayFramework我试图列出所有没有与我的模型相关联的ManyToMany项目的项目,我该怎么做?
这是我的结构:
User
@ManyToMany
List<Section> sections;
public static Model.Finder<Long,User> find = new Model.Finder<Long, User>(Long.class, User.class);
Section
Integer year;
@ManyToMany
List<User> users;
public static Model.Finder<Long,Section> find = new Model.Finder<Long, Section>(Long.class, Section.class);
感谢您的帮助!
答案 0 :(得分:4)
你需要这样做:
String q="find * fetch sections where sections.id is null"
Ebean.createQuery(User.class,q).findList();
这将创建一个左外连接查询,find.where()。IsNull(“sections”)不起作用。
答案 1 :(得分:2)
试试这些:
find.where().eq("sections", null).findList();
或
find.where().isNull("sections").findList();
抱歉,这是我的头脑,现在无法验证。