How to share an entity between two different core

2020-07-17 08:38发布

I'm wondering how to share an entity between two different core data models?

For example, I have a "Universe" model which describes a "WorldData" with its "CountryData". And in another hand, I have a "Population" model which describes a "HumanData" with its "CountryData".

I definitely want to keep my models separated.

Thanks in advance.

1条回答
做个烂人
2楼-- · 2020-07-17 09:06

Have you checked the Core Data Guide? Managing relationships between entities is pretty basic.

If you want to manage a relationship between your Universe entities and your Population entities, you should describe them in the same model. Off the top of my head, I can't think of any benefits of putting two related entities in different Core Data Models.

查看更多
登录 后发表回答