我使用java和avaje ebean 2.8.1。 我想对方法进行特定查询。 例如: 从born_date
中删除子项= false的子项中选择*@Entity
public class Client {
@Id
private Long id;
@OneToMany
private List<Child> children; //this return all, include removed=true
public List<Child> getChildren(){
return children;
}