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
Follow up of #564 Add support for using an EntityViewSetting parameter in Spring Data repositories.
EntityViewSetting
The text was updated successfully, but these errors were encountered:
What about a
interface EntityViewSettingProcessor { <Q extends FullQueryBuilder<T, Q>> void acceptEntityViewSetting(EntityViewSetting<T, Q> setting); }
and then
interface MyRepository extends Repository<Cat, Long> { List<CatView> findAll(EntityViewSettingProcessor processor); } repository.findAll(setting -> /* do things */);
Sorry, something went wrong.
That's actually a pretty nice way to do it. I like it!
[Blazebit#622] Add support for EntityViewSetting in Spring
74c7b1a
4251f56
c0d815c
014b246
[#622] Add support for EntityViewSetting in Spring
2442f91
No branches or pull requests
Follow up of #564
Add support for using an
EntityViewSetting
parameter in Spring Data repositories.The text was updated successfully, but these errors were encountered: