Reputation: 2058
If I have a property name
in my class Project
, is it possible to link that property to the property project_name
in my class User
?
I know that I can link a record to another record with a link, but I would like something similar between properties.
Upvotes: 0
Views: 58
Reputation: 1949
It is not possible since properties do not have an identity (physical position) like records, they are only values inside of records.
Upvotes: 1