runjorel
07/12/2019, 7:33 PMbatchInsert
for a List<T>
because batchInsert
will only accept a List<Any>
. Anyone else with that issue?tjohnn
07/13/2019, 9:03 AMtapac
07/17/2019, 8:20 PMrunjorel
07/17/2019, 8:27 PMinterface CrudRepository<T, ID>{
val table: IdTable<ID>
....
fun saveAll(entities: List<T>) ...
table.batchInsert( entities ){ .. } // where I was getting compiler error for List<Any>
tapac
07/18/2019, 1:51 PMinterface CrudRepository<T:Any, ID>{