标签: python mongodb mongoengine doctrine-odm bidirectional-relation
PHP Doctrine支持bi-directional references。我想知道MongoEngine是否有类似的东西,所以当我添加一个用户的帖子时,我不需要手动保持双方同步。
我也只能将引用存储在many关系的one-to-many一侧,并且 使用类似Post(user=user_a)的内容来获取user_a的所有帖子。但我想知道这两种方法的权衡。另外,多对多关系怎么样?
many
one-to-many
Post(user=user_a)
非常感谢!