我看了这个例子:
suspend fun save(user: User)=
client.insert().into<User>().table("users").using(user).await()
这工作正常。我想使用批量插入方法:
https://docs.spring.io/spring-data/r2dbc/docs/1.0.x/reference/html/#reference,第 11.7.2 节。插入数据
using (Publisher) 用于接受要插入的对象流。
所以我尝试了:
client.insert().into<User>().table("users").using(Flux.fromIterable(user)).await()
但这并没有做任何事情。为什么会这样,应该如何编写才能工作?