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
Sometimes factory components have Fields that we need to access from the code. However once the factory component has already built what it should build these attributes are hard to access. The current way to do this would be for instance:
It would be nice to have some syntactic sugar for the above, for example:
student=self._model.student_model
Where the _name notation would be the way to access the factory component that created whatever the factory is tasked with producing (which would be self.model)
The text was updated successfully, but these errors were encountered:
Feature motivation
Sometimes factory components have Fields that we need to access from the code. However once the factory component has already built what it should build these attributes are hard to access. The current way to do this would be for instance:
Feature description
It would be nice to have some syntactic sugar for the above, for example:
Where the
_name
notation would be the way to access the factory component that created whatever the factory is tasked with producing (which would beself.model
)The text was updated successfully, but these errors were encountered: