46474849505152
* * @param entityPath EntityPath * @return EntityPath */ public JPADeleteClause deleteClause(EntityPath<?> entityPath) { return new JPADeleteClause(getEntityManager(), entityPath); }
99100101102103104105
* * @param path * @return the Querydsl {@link DeleteClause}. */ protected DeleteClause<JPADeleteClause> delete(EntityPath<?> path) { return new JPADeleteClause(entityManager, path); }
58596061626364
protected JPAQuery query() { return new JPAQuery(entityManager); } protected JPADeleteClause delete(EntityPath<?> path) { return new JPADeleteClause(entityManager, path); }