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
AbstractMemberMetaData has "getMapsIdAttribute" from annotations/XML. Need to make use of it.
Could be useful if fully supporting '@EmbeddedId', for example
@Entity public class Employee { @Id long id; }
@Entity @IdClass(DependentId.class) public class Dependent { @EmbeddedId DependentId id; @MapsId("employeePK") @ManyToOne Employee employee; }
@Embeddable public class DependentId { String name; // matches name of @Id attribute long employeePk; // matches type of Employee PK ... }
The text was updated successfully, but these errors were encountered:
Note that this is strongly linked to an update to the enhancement contract in datanucleus/datanucleus-core#155
Sorry, something went wrong.
No branches or pull requests
AbstractMemberMetaData has "getMapsIdAttribute" from annotations/XML. Need to make use of it.
Could be useful if fully supporting '@EmbeddedId', for example
The text was updated successfully, but these errors were encountered: