我有以下SqlLite表:
Users
Attribute
email (is unique)
Relationships
friendsOfUser
Friends
Attribute
active (yes or no)
email (is unique with combination of freindsToUser)
Relationship
friendsToUser
我可以创建User和Friend表,但如何为friendsOfUser和friendsToUser创建NSSets?我首先使用电子邮件创建用户实体,然后通过设置活动和电子邮件创建朋友。最初,多对多的关系是空白的。如何在核心数据中更新此内容。