You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/query/batch-delete.rst
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Batch delete
5
5
.. contents::
6
6
:depth: 3
7
7
8
-
Annotate with ``@BatchDelete`` to Dao method for execute batch insert.
8
+
Annotate with ``@BatchDelete`` to Dao method for execute batch delete.
9
9
10
10
.. code-block:: java
11
11
@@ -25,7 +25,9 @@ Also the ``postDelete`` method of entity listener method is called each entity w
25
25
Return value
26
26
==============
27
27
28
-
Return value must be ``int[]`` that is represented each deleting process's updated count.
28
+
Return value must be ``org.seasar.doma.jdbc.BatchResult`` that has entity class as an element if parameter ``Iterable`` subtype element is immutable entity class.
29
+
30
+
Return value must be ``int[]`` that is represented each deleting process's updated count if the above conditions are not satisfied.
0 commit comments