Open
Description
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) 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);