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
@Entity() class User { User(this.id, this.address); @Id final int id; @Embedded() final Address? address; } class Address { final String? streetAddress1; final String? streetAddress2 }
Database schema for User then becomes
id street_address_1 street_address_2
The alternatives are as mentioned in objectbox/objectbox-java#456
This request is similar to the features provided in other persistence libraries
The text was updated successfully, but these errors were encountered:
Thanks for your request! For anyone else interested, please thumbs up the first post!
As noted objectbox/objectbox-java#456 is the Java issue about this.
And the current workarounds are to
Sorry, something went wrong.
No branches or pull requests
Describe the solution you'd like
Database schema for User then becomes
Describe alternatives you've considered
The alternatives are as mentioned in objectbox/objectbox-java#456
Additional context
This request is similar to the features provided in other persistence libraries
The text was updated successfully, but these errors were encountered: