如何将order by子句添加到java实体?

时间:2014-03-02 19:17:22

标签: java entity ebean

我使用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;
    }

1 个答案:

答案 0 :(得分:0)

查看@Where注释,它仍然在2.8.x

中有效