mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
Merge pull request #694 from Shredder121/patch-1
Typo in documentation #693
This commit is contained in:
commit
e8a1b69ae8
@ -501,7 +501,7 @@ QCustomer customer = QCustomer.customer;
|
||||
// delete all customers
|
||||
new JPADeleteClause(entityManager, customer).execute();
|
||||
// delete all customers with a level less than 3
|
||||
new JPAeDeleteClause(entityManager, customer).where(customer.level.lt(3)).execute();
|
||||
new JPADeleteClause(entityManager, customer).where(customer.level.lt(3)).execute();
|
||||
]]></programlisting>
|
||||
|
||||
<para>The second parameter of the JPADeleteClause constructor is the entity to
|
||||
|
||||
Loading…
Reference in New Issue
Block a user