Closed
Description
Migrated issue, originally created by dieselmachine (@dieselmachine)
I realize this probably isn't feasible right now, but it seems like it could be implemented easily alongside issue #3423.
Metadata
Metadata
Assignees
Labels
Type
Projects
Relationships
Development
No branches or pull requests
Activity
sqlalchemy-bot commentedon Oct 9, 2015
Michael Bayer (@zzzeek) wrote:
well it's already got .info, it's just not in the constructor. can add that
sqlalchemy-bot commentedon Oct 9, 2015
Michael Bayer (@zzzeek) wrote:
.AssociationProxy.info
parameter to the:class:
.AssociationProxy
constructor, to suit the:attr:
.AssociationProxy.info
accessor that was added in🎫
2971
. This is possible because :class:.AssociationProxy
is constructed explicitly, unlike a hybrid which is constructed
implicitly via the decorator syntax.
fixes Would it be possible to have association_proxy allow the 'info' param, similar to columns and relationships? #3551
→ 9d08c6a
sqlalchemy-bot commentedon Oct 9, 2015
Michael Bayer (@zzzeek) wrote:
.AssociationProxy.info
parameter to the:class:
.AssociationProxy
constructor, to suit the:attr:
.AssociationProxy.info
accessor that was added in🎫
2971
. This is possible because :class:.AssociationProxy
is constructed explicitly, unlike a hybrid which is constructed
implicitly via the decorator syntax.
fixes Would it be possible to have association_proxy allow the 'info' param, similar to columns and relationships? #3551
(cherry picked from commit 9d08c6a)
→ b63229a
sqlalchemy-bot commentedon Oct 9, 2015
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Oct 9, 2015
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Oct 10, 2015
dieselmachine (@dieselmachine) wrote:
Awesome, thanks!