I am working on a quite large code base that has been implemented using sqlalchemy.ext.declarative, and I need to add a dict-like property to one of the classes. What I need is the same as in this question, but in a declarative fashion. Can anyone with more knowledge in SQLAlchemy give me an example?
Thanks in advance...
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
Declarative is just another way of defining things. Virtually you end up with the exact same environment than if you used separated mapping. Since I answered the other question, I'll try this one as well. Hope it gives more upvotes ;) Well, first we define the classes
Now let's make a test:
I get:
Now let's check the notes table...
I get:
It works!! :D |
|||||||||||
|