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
I have a "Note" model that needs to have a relationship with multiple other models so I'd like to create a base "Note" class that several other classes will inherit and then add the relationship in each of the derived classes. It looks like that currently isn't possible with MotionData. Any ideas on the approach for adding it? Is that making things too complicated? Or should I just add the multiple relationships to my "Note" model and then use the appropriate one for where it is being used?
The text was updated successfully, but these errors were encountered:
In theory it shouldn’t be too difficult, but somebody (you) will have to figure out what changes that would require. At the very least you would probably need to add the code to mark a class as ‘abstract’, if a ‘Note’ will never be used directly.
I have a "Note" model that needs to have a relationship with multiple other models so I'd like to create a base "Note" class that several other classes will inherit and then add the relationship in each of the derived classes. It looks like that currently isn't possible with MotionData. Any ideas on the approach for adding it? Is that making things too complicated? Or should I just add the multiple relationships to my "Note" model and then use the appropriate one for where it is being used?
The text was updated successfully, but these errors were encountered: