CRUD actions

Report a typo

The CrudRepository interface has two save methods:

Java
<S extends T> S save(S entity);
<S extends T> Iterable<S> saveAll(Iterable<S> entities)
Kotlin
fun <S : T> save(entity: S): S
fun <S : T> saveAll(entities: Iterable<S>): Iterable<S>

Select all actions that correspond to these methods.

Select one or more options from the list
___

Create a free account to access the full topic