使用本机查询级联删除

时间:2013-01-11 12:41:44

标签: java orm playframework ebean cascading-deletes

我有一个Ebean Entity模型,其中3个实体与@OneToMany关系相关,如下所示:

public class A extends Model {
    @Id
    @GeneratedValue
    public Long id;

    public String name;

    @OneToMany(cascade = CascadeType.ALL)
    public List<B> bList;
    ...
}

public class B extends Model {
    @Id
    @GeneratedValue
    public Long id;

    public String name;

    @OneToMany(cascade = CascadeType.ALL)
    public List<C> cList;
    ...
}

public class C extends Model {
    @Id
    @GeneratedValue
    public Long id;

    public String name;

    ...
}

我想删除特定A对象的al Bs和Cs。我知道如果我做这样的话,Ebean可以处理Cs的删除:

for (B b : a.bList) {
    b.delete();
}

但我不认为这是最好的解决方案。我想做这样的事情:

String sql = "DELETE FROM B WHERE B.a_id="+a.id;
SqlUpdate update = Ebean.createSqlUpdate(sql);
update.execute();

但它是一个原生SQL,它输出'ConstraintViolationException',因为它没有'ON DELETE CASCADE'。

什么是最好的解决方案?

1 个答案:

答案 0 :(得分:0)

com.avaje.ebean.Ebean类有delete方法,它将集合作为参数:

static int delete(Collection<?> c) // Delete all the beans from a Collection.

所以你可以使用以下代码:

Ebean.delete(a.bList);
a.bList = new ArrayList<B>();