Ebean搜索ManyToMany是空的?

时间:2012-12-10 10:49:49

标签: java playframework-2.0 ebean

使用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);

感谢您的帮助!

2 个答案:

答案 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();

抱歉,这是我的头脑,现在无法验证。