You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but because the Person object does not inherit from Primitive I can not use that expression
instead I'm forced to write it as
\Cat.owner?.id == person1.id
Suggested solution
A fix for this issue could be done by extending the Primitive type to hold Identifiable but that might break the meaning of the Primitive type since Identifiable can be a complex type
The text was updated successfully, but these errors were encountered:
So let's assume that we have these Entities
If I would like to query the cats that are related to a person I would assume that this should be possible
but because the
Person
object does not inherit from Primitive I can not use that expressioninstead I'm forced to write it as
Suggested solution
A fix for this issue could be done by extending the
Primitive
type to holdIdentifiable
but that might break the meaning of thePrimitive
type sinceIdentifiable
can be a complex typeThe text was updated successfully, but these errors were encountered: