SQLAlchemy ORM 基本关系模式——提供示例或模板。特别是对于“一对多”和“一对一”
您能给我一个如何使用软件库 SQLAlchemy ORM 的示例吗?特别是,如何构建“一对多”和“一对一”等标准数据库关系?
我知道 SQLAlchemy 文档已经在 基本关系模式 中提供了一些示例,但我正在寻找一些示例来解释初学者用户所发生的情况,特别是讨论需要考虑的权衡。
Can you give me an example of how to use the software library SQLAlchemy ORM? In particular, how do I build standard database relationships like "One to Many" and "One to One"?
I know that the SQLAlchemy documentation already provides some examples at Basic Relationship Patterns , but I'm looking for examples that explain what's happening for the beginner user and especially discussing tradeoffs that need to be considered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我创建了一些带有解释性注释的示例/模板:(
这里有更重的格式版本 )
I've created some examples / templates with explanatory comments:
( a heavier formatted version is here )