Skip to content
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

Completion Proposal for query methods doesn't work with record entities #1113

Closed
BoykoAlex opened this issue Sep 20, 2023 · 1 comment
Closed
Assignees
Labels
for: eclipse something that is specific for Eclipse for: vscode something that is specific for VSCode theme: code completion theme: spring-data-support type: enhancement

Comments

@BoykoAlex
Copy link
Contributor

BoykoAlex commented Sep 20, 2023

Consider a record:

public record Customer(@Id Integer id, String name) {}

And a corresponding repository:

public interface CustomersRepo extends Repository<Customer, Integer> {
}

Now, one of the method completion proposal should have Name proposal for:

public interface CustomersRepo extends Repository<Customer, Integer> {

   findBy^
}
@BoykoAlex
Copy link
Contributor Author

Fixed with e41f45d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
for: eclipse something that is specific for Eclipse for: vscode something that is specific for VSCode theme: code completion theme: spring-data-support type: enhancement
Projects
None yet
Development

No branches or pull requests

2 participants