saveAndFlush could accept iterable as well [DATAJPA-1574] #1883
Labels
status: ideal-for-contribution
An issue that a contributor can help us with
type: enhancement
A general enhancement
Milestone
Vladimir Nemergut opened DATAJPA-1574 and commented
JpaRepository interface only has saveAndFlush method that takes a single instance.
<S extends T> S saveAndFlush(S var1)
Would be handy if an overloaded method exists that takes the iterable, similar to save method, e.g.:
<S extends T> List<S> saveAndFlush(Iterable<S> var1)
<S extends T> List<S> save(Iterable<S> var1);
No further details from DATAJPA-1574
The text was updated successfully, but these errors were encountered: