所以我有CustomEntity1
并CustomEntity2
用 mogenerator 生成。CustomEntity1
与 有一对多关系,CustomEntity2
与CustomEntity2
有一个反向关系CustomEntity1
。
我的问题是当我通过以下方式添加一些内容CustomEntity2
时CustomEntity1
:
[CustomEntity1 addCustomEntity2Object:entity2FreshlyCreated]
它是否设置了反向relashionship?还是我也必须这样做?
CustomEntity2.parent = CustomEntity1;