We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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);
The text was updated successfully, but these errors were encountered:
Hi, @schauder!
Could I work on this? If so, is there any additional information I should know before I start working on it?
Thanks!
Sorry, something went wrong.
Sure, go ahead.
Hi @schauder ! I just wanted to confirm that my understanding of the implementation is correct. Here's what I think needs to be done:
Is my understanding correct? Any advice would be greatly appreciated. Thanks!
Sounds good.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: