声明式 SQLAlchemy 中的标签字典?
我正在开发一个相当大的代码库,该代码库是使用 sqlalchemy.ext.declarative 实现的,并且我需要向其中一个类添加一个类似字典的属性。我需要的与这个问题中的相同,但是以声明性的方式。对 SQLAlchemy 有更多了解的人可以给我举个例子吗? 提前致谢...
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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
声明性只是定义事物的另一种方式。实际上,您最终会得到与使用分离映射完全相同的环境。
既然我回答了另一个问题,我也会尝试这个。希望它能给予更多的支持;)
好吧,首先我们定义类
现在让我们进行一个测试:
我明白了:
现在让我们检查注释表...
我明白了:
它有效! :D
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