Skip to content

DATAGEODE-387 - Implement CrudRepository.delete(Iterable<ID> ids). #45

New issue

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

Closed
wants to merge 2 commits into from

Conversation

schauder
Copy link
Contributor

Merge after DATACMNS-800

@@ -310,6 +311,11 @@ public void deleteAll(@NonNull Iterable<? extends T> entities) {
CollectionUtils.nullSafeIterable(entities).forEach(this::delete);
}

@Override
public void deleteAllById(Iterable<? extends ID> ids) {
CollectionUtils.nullSafeIterable(ids).forEach(this::deleteById);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jxblum does it make sense to expose removeAll(…) on the Template API?

@schauder schauder force-pushed the issue/DATAGEODE-387 branch from 5fd523c to 201de27 Compare November 24, 2020 15:03
mp911de pushed a commit that referenced this pull request Nov 25, 2020
mp911de added a commit that referenced this pull request Nov 25, 2020
Reorder methods according to interface order. Revert import ordering changes.

Original pull request: #45.
@mp911de
Copy link
Member

mp911de commented Nov 25, 2020

That's merged and polished now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants