これが私のデータベースです(簡略化):
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);
Ebean を使用して、今年 (2012 年) に関連するセクションがないすべてのユーザーをリストする必要があります (したがって、関連するセクションがまったくないユーザーも含まれます)。
しかし、私はこれを行う方法がわかりません。
私は試した :
User.find.where().isNull("sections").findList(); // but it didn't worked
だから私はここで立ち往生しています。どうすればこれを達成できますか?