While comparing R2dbcEntityOperations and JdbcAggregateOperations I noticed that R2dbcEntityOperations has a method to delete entities by query: [R2dbcEntityOperations#delete(org.springframework.data.relational.core.query.Query,java.lang.Class)](https://docs.spring.io/spring-data/r2dbc/docs/current/api/org/springframework/data/r2dbc/core/R2dbcEntityOperations.html#delete(org.springframework.data.relational.core.query.Query,java.lang.Class)) but JdbcAggregateOperations does not. I'm proposing to add following method to the JdbcAggregateOperations interface: void delete(org.springframework.data.relational.core.query.Query query, Class<?> domainType);