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
0.9.63
23
postgresql
Windows
https://babyfish-ct.github.io/jimmer-doc/docs/mapping/advanced/calculated/formula#depending-on-simple-properties
I am waiting JSON output:
{ "id" : 9, "fullName" : "Admin Admin ", "email" : "[email protected]" }
I receive JSON output:
{ "id" : 9, "firstName" : "Admin", "lastName" : "Admin", "patronymic" : null, "email" : "[email protected]" }
When executing a select query, I get unexpected behavior.
// any fetcher .user(ReferenceFetchType.JOIN_ALWAYS, UserFetcher.$ .fullName() .email())
No response
@Entity public interface User extends UserFLP { String email(); @Formula(dependencies = {"firstName", "lastName", "patronymic"}) default String fullName() { return firstName() + ' ' + lastName() + ' ' + patronymic(); }
@MappedSuperclass public interface UserFLP { String firstName(); String lastName(); @Nullable String patronymic(); }
The text was updated successfully, but these errors were encountered:
#948
6098fb3
Try 0.9.64
0.9.64
Sorry, something went wrong.
Thank you!
No branches or pull requests
Jimmer Version
0.9.63
JDK Version
23
Database
postgresql
OS
Windows
Expected behavior
https://babyfish-ct.github.io/jimmer-doc/docs/mapping/advanced/calculated/formula#depending-on-simple-properties
I am waiting JSON output:
Actual behavior
I receive JSON output:
Description
When executing a select query, I get unexpected behavior.
Reproduction steps
Generated SQL
No response
Relation Model
Screenshots
No response
Logs
No response
The text was updated successfully, but these errors were encountered: