如何替换应用程序引擎“父级” django-nonrel 中具有 Django 功能的字段?
我正在研究将代码库从使用应用引擎补丁转换为使用 django-nonrel。
我的现有数据中,Visit 的父实体为一个病人。那么:
class Patient(db.Model):
...
class Visit(db.Model):
...
patient = Patient(...)
visit = Visit(parent=patient, ...)
当仅使用 django-nonrel 代码时,如何继续这种关系?例如,当 Patient 和 Visit 派生自 django.db.models.Model 时,如何创建新的 Visit?如何查询就诊情况并指定父患者?等等。
我愿意使用特定于后端的接口。
I am looking at the challenges in converting a codebase from using app engine patch to using django-nonrel.
I have existing data where Visit has a parent entity of a Patient. So:
class Patient(db.Model):
...
class Visit(db.Model):
...
patient = Patient(...)
visit = Visit(parent=patient, ...)
How do I continue this relationship when using only django-nonrel code? For example, how do I create a new Visit when Patient and Visit are derived from django.db.models.Model? How do I query visits, specifying the parent Patient? And so on.
I'm willing to use backend-specific interfaces.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能找到了答案:不支持。 来源 说:
I may have found an answer: unsupported. Source says: