Open
Description
With 1.1.x it was possible to use:
databaseClient.insert().into("table_name")
databaseClient.update().table("table_name")
databaseClient.delete().from("table_name")
without any entity classes.
In 1.2.0 org.springframework.data.r2dbc.core.DatabaseClient
is deprecated in favor of org.springframework.r2dbc.core.DatabaseClient
and R2dbcEntityTemplate
, but neither of them seem to support this kind of operations. What is the correct migration path?